Jan 15, 2004 #1 Leroy1981 Programmer Jul 22, 2002 46 US How would i find out which letter is assigned to a computer's hard drive or cd-rom.
Jan 15, 2004 #2 itsgsd Programmer Sep 4, 2002 163 Look at the WINAPI functions GetLogicalDrives() and GetDriveType(). You can use GetLogicalDrives() to determine which drive letters are available and then GetDriveType() to determine what type of a drive it is. Good Luck. Upvote 0 Downvote
Look at the WINAPI functions GetLogicalDrives() and GetDriveType(). You can use GetLogicalDrives() to determine which drive letters are available and then GetDriveType() to determine what type of a drive it is. Good Luck.
Jan 21, 2004 Thread starter #3 Leroy1981 Programmer Jul 22, 2002 46 US Many Thanks. Upvote 0 Downvote