Retreives the details of a mapped drive.
DriveMapGet( "device" )
Parameter
| device | The device (drive or printer) letter to query. Eg. "O:" or "LPT1:" |
Bemerkungen
Keine.
Siehe auch
DriveMapAdd, DriveMapDel
Beispiel
; Map X drive to \\myserver\stuff using current user
DriveMapAdd("X:", "\\myserver\stuff")
; Get details of the mapping
MsgBox(0, "Drive X: is mapped to", DriveMapGet("X:"))