ASP AvailableSpace Property
Complete Drive Object Reference
The AvailableSpace property returns the amount of available space to a user on
the specified drive or network share.
Note: The value returned is often equal to the value returned
by the FreeSpace property.
Syntax
|
DriveObject.AvailableSpace
|
Example
<%
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: 884465152
|
Complete Drive Object Reference
Click here to design a Stunning Flash Website for Free
Wix is a revolutionary web design tool that provides anyone with the possibility to create professional and beautiful websites for free.
With e-commerce features, search engine visibility and many more professional tools, Wix is the ultimate solution for creating a spectacular site while saving tons of money.
|