64位ProgramFiles环境变量

64位ProgramFiles环境变量

本文介绍了Windows 8/64位ProgramFiles环境变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

我遇到的问题涉及ProgramFiles和ProgramFiles(x86).

我不知道这是我的计算机是Windows 8还是64位的问题,但是以下两种方法都可以解析为"C:\ Program Files(x86)":

Hi all,

The problem im having involves the ProgramFiles and ProgramFiles(x86).

I don''t know if this is just a problem with my machine being Windows 8 or it being 64bit but the following both resolve to "C:\Program Files (x86)":

string progfiles = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles);
string progfilesx86 = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFilesX86);



使用其他来源,我可以看到其他人遇到了这个问题,但是有没有办法解决任何人都知道的问题?
谢谢!



Using other sources i can see other people have had this problem but is there any way around it that anyone knows?
Thanks!

推荐答案


string progfiles = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles);
if (progfiles.EndsWith("(x86)"))
{
    progfiles = progfiles.Replace(" (x86)", "");
}
string progfilesx86 = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFilesX86);


这篇关于Windows 8/64位ProgramFiles环境变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 17:31