D
DENISE
How do I find out my hard drive size.
DENISE said:How do I find out my hard drive size.
Gary''s Student said:Easy:
Sub servient()
sPath = "C:"
Set oFs = CreateObject("Scripting.FileSystemObject")
Set drv = oFs.GetDrive(oFs.GetDriveName(sPath))
fullsize = drv.TotalSize
MsgBox (fullsize)
End Sub