001
04.12.2002, 17:14 Uhr
Uwe
C/C++ Master (Administrator)
|
Hallo Aus dem Gefühl heraus etwa so,
C++: |
char szVolName[MAX_PATH];
BOOL result = GetVolumeInformation("E:\\", szVolName, MAX_PATH, NULL, NULL, NULL, NULL, NULL);
if (result == TRUE){ MessageBox(szVolName); } else{ MessageBox("No volume information available"); }
|
Wobei E: als CD-ROM natürlich veränderbar ist -- "Es ist schwierig, ein Programm wirklich idiotensicher zu machen, weil Idioten so genial sind."
Bis dann... Uwe |