vote up 7 vote down star
5

I'm using:

FileInfo(System.Environment.GetFolderPath(System.Environment.SpecialFolder.ProgramFiles) + @"\MyInstalledApp"

In order to determine if a program is detected on a users machine (it's not ideal, but the program I'm looking for is a right old kludge of a MS-Dos application, and I couldn't think of another method).

On XP and 32-Bit versions of Vista this works fine. However, on x64 Vista the code returns the x64 Program Files folder, whereas the application is installed in Program Files x86. Is there a way to programatically return the path the path to Program Files x86 without hard wiring "C:\Program Files (x86)"?

flag

67% accept rate

3 Answers

vote up 22 vote down check

This function will return the x86 Program Files directory in all 3 of the windows configurations

  1. 32 bit Windows
  2. 32 bit program running on 64 bit Windows
  3. 64 bit program running on 64 bit windows


        static string ProgramFilesx86()
        {
            if( 8 == IntPtr.Size 
                || (!String.IsNullOrEmpty(Environment.GetEnvironmentVariable("PROCESSOR_ARCHITEW6432"))))
            {
                return Environment.GetEnvironmentVariable("ProgramFiles(x86)");
            }

            return Environment.GetEnvironmentVariable("ProgramFiles");
        }
link|flag
Great - thanks very much! – Leonard H Martin Oct 11 '08 at 16:00
vote up 5 vote down

Note, however, that the ProgramFiles(x86) env variable is only available if your app is running 64-bit.

If your app is running 32-bit, you can just use the ProgramFiles env variable whose value will actually be "Program Files (x86)".

link|flag
True enough. However, it is obvious that his application is running as 32-bit, otherwise GetFolderPath() would already be returning the right x86 folder anyway. – tomasr Oct 11 '08 at 15:32
vote up 3 vote down

One way would be to look for the "ProgramFiles(x86)" environment variable:

String x86folder = Environment.GetEnvironmentVariable("ProgramFiles(x86)");
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.