Jump to content

Removable disc question


Kivin
 Share

Recommended Posts

Hi everyone!

Is anybody know, how can I specify (detect) path to removable disc?

(like path to desctop - @desctopdir or other way)

Also I want to know, how can I get size of free space in removable disc?

Thanks for any help!

Link to comment
Share on other sites

$var = DriveGetDrive("REMOVABLE")
If Not @error Then
    MsgBox(4096, "", "Found " & $var[0] & " drives")
    For $i = 1 To $var[0]
        MsgBox(4096, "Drive " & $i, $var[$i])
        $var2 = DriveSpaceFree($var[$i])
        MsgBox(4096, "Free space on C:", $var2 & " MB")
    Next
EndIf


Time you enjoyed wasting is not wasted time ......T.S. Elliot
Suspense is worse than disappointment................Robert Burns
God help the man who won't help himself, because no-one else will...........My Grandmother

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...