vote up 1 vote down star

How would I find the driver letter of the main hard disk on a Windows Operating system. That is, the drive with Program Files, System32, etc.

flag
Don't assume programs will be in "\Program Files", or system files in "\Windows\System32" - there are API calls to retrieve exact paths for these and more... – Shog9 May 1 at 5:24
Can you give me an example of one of those API calls so I can research them? I am wanting to look for certain files associated with programs – danile oanas May 1 at 5:27
msdn.microsoft.com/en-us/library/… ... msdn.microsoft.com/en-us/library/… – Shog9 May 1 at 6:00

4 Answers

vote up 3 vote down

The API Call GetWindowsDirectory could be of assistance. You can further parse this information using API's to parse the drive letter information.

link|flag
vote up 7 vote down

There's an environment variable called SystemDrive which is set to the system drive (surprisingly enough). The getenv() call is how you can get to it.

char *sysDrive = getenv ("SystemDrive");
if (sysDrive == NULL) {
    // vote me down.
} else {
    // vote me up and use it.
}

This page lists a whole slew of environment variables available if you can't rely on specific directories existing on the system drive.

Alternatively, use the Windows API call, SHGetSpecialFolderPath(), and pass in the correct CSIDL. Then you shouldn't have to rely on the environment variables.

Although take note on those pages that this has been superceded by other functions in Vista (it should still work since this function becomes a wrapper around the new one).

link|flag
+1 for simplicity.... – ojblass May 1 at 5:21
Joel would be proud ;) – Chad Grant May 1 at 5:25
vote up 1 vote down

SYSTEMDRIVE

PROGRAMFILES

SYSTEMROOT

WINDIR

Don't assume Program Files is on the same drive as Windows. It usually is. Usually.

link|flag
vote up 0 vote down

Never use env variables like in the wrong answer above.
env variables are updatable by the user.

link|flag
1  
Sure, the user can change the values of %WINDIR%, etc., but the user can also mess with their registry, replace all your application's resource files with their LOLCats, or install Linux. Those are really not things your app needs to have a contingency plan for. – zachrrs May 1 at 17:10

Your Answer

Get an OpenID
or

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