当前位置: 首页 > 网络学院 > 服务端脚本教程 > ASP > ASP FreeSpace 属性
The FreeSpace property returns the amount of free space to a user on the specified drive or network share.
ASP FreeSpace 属性的作用是将指定驱动器以及网络共享文件夹的可用空间数发送给用户。
Note: The value returned is often equal to the value returned by the AvailableSpace property.
注意:这个返回的值与使用AvailableSpace属性所返回的值相等。
DriveObject.FreeSpace |
<% dim fs,d set fs=Server.CreateObject("Scripting.FileSystemObject") set d=fs.GetDrive("c:") Response.Write("Drive " & d) Response.Write(" Free space in bytes: " & d.FreeSpace) set d=nothing set fs=nothing %> Output: Drive c: Free space in bytes: 884465664 |