I am using
to find drive sizes ( with some further processing to get say 35.6 GB.
The value of oSize for my 250GB drive is
**********.*********
Is there any way to get this value which is shown in Windows explorer as 232 GB usable?
Regards
Bryan
Code:
oFSO = CREATEOBJ('Scripting.FileSystemObject')
oDrive = oFSO.GetDrive(CHR(I)+":")
oSize = TRANSFORM(oDrive.TotalSize)
to find drive sizes ( with some further processing to get say 35.6 GB.
The value of oSize for my 250GB drive is
**********.*********
Is there any way to get this value which is shown in Windows explorer as 232 GB usable?
Regards
Bryan