Kivin Posted January 26, 2007 Posted January 26, 2007 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!
BigDod Posted January 26, 2007 Posted January 26, 2007 $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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now