up vote 3 down vote favorite
share [g+] share [fb]

Im using this code in XP 32bit os to get the %windir%\windows\system32 folder path.

sysFolderPath = Environment.GetFolderPath(Environment.SpecialFolder.System)

What i want to know is that will this same code return the %windir%\windows\syswow64 folder when used in windows7 (64/32bit)?

link|improve this question
feedback

3 Answers

It will return c:\windows\system32, even in a 32-bit program that runs on the 64-bit version of Windows. Do not fix this, it doesn't need fixing. Because when you use that path, Windows will automatically remap it to c:\windows\syswow64. The file system redirector takes care of it.

link|improve this answer
feedback

Nope. On my Windows 7 64-bit box, targeting x64:

C:\Windows\system32
link|improve this answer
feedback

I tried on my Windows7 box with .NET 4.0

This code:

Console.WriteLine(Environment.GetFolderPath(Environment.SpecialFolder.System));
Console.WriteLine(Environment.GetFolderPath(Environment.SpecialFolder.SystemX86));

Prints the following from both 32- and 64-bit process:

C:\Windows\system32
C:\Windows\SysWOW64
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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