ASP AvailableSpace Property
Definition and Usage
The AvailableSpace property returns the amount of available space on the specified drive or network share for the user.
Note:The returned value is usually equal to the value returned by the FreeSpace property. For computer systems that support quotas, the values returned by these two properties differ.
Syntax:
DriveObject.AvailableSpace
Instance
<% Dim fs,d Set fs=Server.CreateObject("Scripting.FileSystemObject") Set d=fs.GetDrive("c:") Response.Write("Drive " & d) Response.Write(" Available space in bytes: " & d.AvailableSpace) set d=nothing set fs=nothing %>
Output:
Drive c: Available space in bytes: 668865153