DriveGet()

Namespace ›› System ›› Mfunc ›› Methods ››
Parent Previous Next

DriveGet()

OutputVar := Mfunc.DriveGet(Cmd [, Value])

Mfunc.DriveGet(Cmd [, Value])

Retrieves various types of information about the computer's drive(s).

Parameters

see AutoHotkey Docs - DriveGet

Returns

Returns the name of the variable in which to store the result of Cmd.

Throws

Throws MfException if error occurs.

Remarks

Wrapper for AutoHotkey Docs - DriveGet. Static method.

Any and/or all parameter for this function can be instance of MfString or var containing string.

See Also:AutoHotkey Docs - DriveGet

Example

; This is a working example script.
folder := Mfunc.FileSelectFolder(, , 3, "Pick a drive to analyze:")
if (MfNull.IsNull(folder))
{
	return
}
list := Mfunc.DriveGet("list")
cap := Mfunc.DriveGet("capacity", folder)
free := Mfunc.DrivespaceFree(folder)
fs := Mfunc.DriveGet("fs", folder)
label := Mfunc.DriveGet("label", folder)
serial := Mfunc.DriveGet("serial", folder)
type := Mfunc.DriveGet("type", folder)
status := Mfunc.DriveGet("status", folder)
MsgBox All Drives: %list%`nSelected Drive: %folder%`nDrive Type: %type%`nStatus: %status%`nCapacity: %cap% M`nFree Space: %free% M`nFilesystem: %fs%`nVolume Label: %label%`nSerial Number: %serial%