ASP TotalSize 屬性

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
%>
輸出:
The total size in bytes is: 4293563392
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
%>
輸出:
The total size in bytes is: 4293563392
