This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Detecting CD-ROM drive


At 10:38 PM 10/29/97 -0500, Arlindo da Silva wrote:
>
>Does anybody know how to determine which drive (d:, e:, ...) is a CDROM? 
>Is there any native function for this? Thanks.
>
>-- 
>Arlindo da Silva    
>dasilva@alum.mit.edu

You can use GetDriveType().  Here's some info on it from the MSDN Library.

The GetDriveType function determines whether a disk drive is a removable,
fixed, CD-ROM, RAM disk, or network drive. 
UINT GetDriveType(
    LPCTSTR lpRootPathName 	// address of root path 
   );	
 
Parameters
lpRootPathName
Points to a null-terminated string that specifies the root directory of the
disk to return information about. If lpRootPathName is NULL, the function
uses the root of the current directory. 
 
Return Values
The return value specifies the type of drive. It can be one of the following
values: 
Value	Meaning
0	The drive type cannot be determined.
1	The root directory does not exist.
DRIVE_REMOVABLE	The drive can be removed from the drive.
DRIVE_FIXED	The disk cannot be removed from the drive.
DRIVE_REMOTE	The drive is a remote (network) drive.
DRIVE_CDROM	The drive is a CD-ROM drive.
DRIVE_RAMDISK	The drive is a RAM disk.
 
See Also
GetDiskFreeSpace 


Larry Hall                              lhall@rfk.com
RFK Partners, Inc.                      (781) 239-1053
8 Grove Street                          (781) 239-1655 - FAX
Wellesley, MA  02181                             

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]