Returns the status of the drive as a string.
DriveStatus ( "path" )
The list of possible return values may be incomplete.
DriveStatus() may even work when a complete directory path (which exists) is given. However, a file path won't work.
CDTray, DriveGetDrive, DriveGetFileSystem, DriveGetLabel, DriveGetSerial, DriveGetType, DriveSetLabel, DriveSpaceFree, DriveSpaceTotal, FileExists
#include <MsgBoxConstants.au3>
Local $sStatus= DriveStatus (@HomeDrive &"\"); Find the status of the home drive, generally this is the C:\ drive.
MsgBox ($MB_SYSTEMMODAL,"","Status: "&$sStatus)