📄 impspathinfo.cs
字号:
namespace Imps.Client.Resource
{
using Imps.Utils;
using System;
using System.IO;
public class ImpsPathInfo
{
public static string ApplicationDataDir
{
get
{
return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), AppDictionary.ShortEnglishName);
}
}
public static string CookiesDir
{
get
{
return Environment.GetFolderPath(Environment.SpecialFolder.Cookies);
}
}
public static string DefaultShareContentSavePath
{
get
{
return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), AppDictionary.ShareContentFolderName);
}
}
public static string InternetCacheDir
{
get
{
return Environment.GetFolderPath(Environment.SpecialFolder.InternetCache);
}
}
public static string StartupDir
{
get
{
return Environment.GetFolderPath(Environment.SpecialFolder.Startup);
}
}
public static string StartupPath
{
get
{
return FilePathHelper.AppBaseDir;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -