×
Menu
Index

GETDRVLTRINFO Subroutine

 
Usage:
GETDRVLTRINFO([0|1])
 
Description:
Queries the system for drive letters and uses them for the GETHDINFO subroutine.  The queried drive letters remain in system memory (including across scripts) until GETDRVLTRINFO is called again with a parameter of zero.  This only has any affect when running the Windows version.
 
Example:
sub main()
   GetDrvLtrInfo() // same as GetDrvLtrInfo(1)
   GetHDInfo(0)
   GetDrvLtrInfo(0)
end sub