vote up 0 vote down star

On windows 2000 or later can I assume that this path will always be on the machine? For example I know that on Windows XP in some languages the "Program Files" folder may have a different name.

Thanks. Ohad

Duplicate of: http://stackoverflow.com/questions/239209/is-it-safe-to-assume-that-the-path-cwindowssystem32-always-exists#239211.

flag

this question has been posted twice ... i already answered the other copy of this question – Jarod Elliott Oct 27 '08 at 6:39

closed as exact duplicate by John Sheehan Oct 27 '08 at 6:44

2 Answers

vote up 3 vote down

No, you can't assume that.

Windows can be installed to a different path. One solution is to look for it by calling GetSystemDirectory (implemented as part of the Windows API).

link|flag
vote up 1 vote down

Better to use:

%windir%\system32

This will cater for different installation paths.

EDIT:

I notice this has alredy been answered in a different question:

http://stackoverflow.com/questions/239209/is-it-safe-to-assume-that-the-path-cwindowssystem32-always-exists#239211

link|flag
You are right. Sorry about the duplication. When I first submitted the question the site reported an error so I assumed that I need to re-post the question. :( – Ohad Horesh Oct 27 '08 at 6:51

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