如何使用C#找到我安装了操作系统(例如Windows 7)的驱动器?然后我必须得到Program Files目录。
答案 0 :(得分:4)
使用Environment.GetFolderPath(Environment.SpecialFolder.System);
,对于程序文件文件夹,请使用Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles);
。
答案 1 :(得分:1)
看看这个link。 Environment.GetEnvironmentVariable
希望能为你做好工作。
答案 2 :(得分:1)
string systemDrive = Path.GetRoot(Environment.GetFolderPath(Environment.SpecialFolder.System));
string progamFilesPath = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles);