<完整驱动器对象参考
的总计TOTALSIZE属性返回的总大小,以字节为单位的指定的驱动器或网络共享。
句法
DriveObject.TotalSize
例
<%
dim fs,d
set fs=Server.CreateObject("Scripting.FileSystemObject")
set d=fs.GetDrive("c:")
Response.Write("The total size in bytes is: " & d.TotalSize)
set d=nothing
set fs=nothing
%>
Output:
The total size in bytes is: 4293563392
<完整驱动器对象参考