最新的Web開發教程
 

ASP TotalSize Property


<完整驅動器對象參考

的總計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

<完整驅動器對象參考