C# 如何以编程方式检索“Program Files”文件夹的实际路径?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/1085584/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
How do I programmatically retrieve the actual path to the "Program Files" folder?
提问by brasskazoo
Possible Duplicate:
C# - How to get Program Files (x86) on Windows Vista 64 bit
I realize the odds of a user changing the Windows default of C:\Program Files
is fairly slim, but stranger things have happened!
我意识到用户更改 Windows 默认值的可能性C:\Program Files
很小,但奇怪的事情发生了!
How can I get the correct path to Program Files
from the system?
我怎样才能Program Files
从系统中获得正确的路径?
采纳答案by brasskazoo
.NET provides an enumeration of 'special folders' for Program Files, My Documents, etc.
.NET为程序文件、我的文档等提供了“特殊文件夹”的枚举。
The code to convert from the enumeration to the actual path looks like this:
从枚举转换为实际路径的代码如下所示:
Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles)
回答by Jeff Meatball Yang
You can access the environment variable called: %PROGRAMFILES%
您可以访问名为:%PROGRAMFILES% 的环境变量
i.e:
IE:
%PROGRAMFILES%\Maxis\SimCity
in C#:
在 C# 中:
System.Environment.SpecialFolder.ProgramFiles
回答by Huppie
You would use GetFolderPathin the Environmentclass.
您将在Environment类中使用GetFolderPath。
try {
Environment.GetFolderPath( Environment.SpecialFolder.ProgramFiles )
catch( ArgumentException ex ) {
Console.Out.WriteLine( ex.StackTrace );
}
回答by Helen
Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles)
is probably the best solution, but another possible variant is evaluating the value of the ProgramFiles
environment variable. For this, you can use the GetEnvironmentVariable
or ExpandEnvironmentVariables
method of the Environment
class:
Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles)
可能是最好的解决方案,但另一个可能的变体是评估ProgramFiles
环境变量的值。为此,您可以使用类的GetEnvironmentVariable
orExpandEnvironmentVariables
方法Environment
:
Environment.GetEnvironmentVariable("ProgramFiles")
Environment.ExpandEnvironmentVariables("%ProgramFiles%")
回答by John B
Just to add to this.
只是为了补充这一点。
If you're running in 32 bit mode (even on a 64 bit os), SpecialFolder.ProgramFiles and %PROGRAMFILES% will return ..Program Files (x86).
如果您在 32 位模式下运行(即使在 64 位操作系统上),SpecialFolder.ProgramFiles 和 %PROGRAMFILES% 将返回 ..Program Files (x86)。
If you specifically need one and/or the other then you'll need to check as follows:
如果您特别需要一个和/或另一个,那么您需要进行如下检查:
32bit system:
32位系统:
SpecialFolder.ProgramFiles
= ..Program Files\
SpecialFolder.ProgramFiles
= ..程序文件\
64bit system in 32bit process:
SpecialFolder.ProgramFiles
= ..Program Files (x86)\
Environment.GetEnvironmentVariable("ProgramW6432")
= ..Program Files\
32位进程中的64位系统:
SpecialFolder.ProgramFiles
= ..Program Files (x86)\
Environment.GetEnvironmentVariable("ProgramW6432")
= ..Program Files\
64bit system in 64bit process:
SpecialFolder.ProgramFiles
= ..Program Files\
Environment.GetEnvironmentVariable("PROGRAMFILES(X86)")
= ..Program Files (x86)\
64位系统中64位的过程:
SpecialFolder.ProgramFiles
= ..Program文件\
Environment.GetEnvironmentVariable("PROGRAMFILES(X86)")
= ..Program文件(x86)\
Obviously this depends on your locale etc...
显然,这取决于您的语言环境等...
回答by Carl H?rberg
Environment.GetEnvironmentVariable("PROGRAMFILES(X86)") ?? Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles)
gets "program files (x86)" in 64-bits Windows and "program files" in 32 bit.
在 64 位 Windows 中获取“程序文件 (x86)”,在 32 位中获取“程序文件”。