利用API函数获取“C:/Documents and Settings/All Users/Application Data”地址
PS:安装以及运行客户端需要保存一个配置文件,目前想到的是保存在这个位置,看很多软件也是保存在这个位置的(欢迎提供更好的方案)。调用Shell32.dll 这个函数([DllImport("Shell32.dll")]
public extern static int SHGetSpecialFolderPath(IntPtr hwndOwner,ref string lpszPath, int nFolder, bool fCreate);)为什么不能返回路径地址?
System.Environment.SpecialFolder.CommonApplicationData
如果不行.你直接根据操作系统版本
此系统的系统盘符号.拼够
“C:/Documents and Settings/All Users/Application Data”
不可以直接拼 必须得根据API获取,有些系统不显示这个目录,但是这个目录是肯定存在的
时间太久远了