12-13-2022, 03:22 PM
(12-13-2022, 03:00 PM)Spriggsy Wrote: I think Fellippe showed you can use DIREXISTS in a loop to check all valid letter drives.
Didn't look Fells routine up, but it sounds like...
Code: (Select All)
FOR i = 1 TO 26
IF _DIREXISTS(CHR$(i + 64) + ":") THEN
PRINT CHR$(i + 64); " Exists."
END IF
NEXT
Which is fine but won't detect the optical drive or it's status. Did Fell add anything else to what I coded, above, for that?
Pete