Platforms to show: All Mac Windows Linux Cross-Platform
WindowsEjectVolumeMBS(driveLetter as string, byref status as Integer) as boolean
Function:
Unmounts and ejects the given drive.
Example:
Notes:
Status is set to 1 after an eject or 2 after an unmount without eject.
Returns true on success and false on failure.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
global method | Files | MBS Win Plugin | 11.0 | No | Yes | No | Yes, Windows only | No |
Example:
// editfield1 has the drive letter
dim status as Integer
dim b as Boolean = WindowsEjectVolumeMBS(EditField1.text, status)
if b then
Select case status
case 1
MsgBox "Media in Drive "+EditField1.text+" has been ejected safely."
case 2
MsgBox "Media in Drive "+EditField1.text+" can be safely removed."
else
MsgBox "Failed?"
end Select
else
MsgBox "Failed."
end if
Status is set to 1 after an eject or 2 after an unmount without eject.
Returns true on success and false on failure.
Blog Entries
The items on this page are in the following plugins: MBS Win Plugin.
Links
MBS Xojo Plugins