Gli ultimi tutorial di sviluppo web
 

ASP TotalSize Property


<Complete Unità Object Reference

La proprietà TotalSize restituisce la dimensione totale, in byte, di un'unità o condivisione di rete specificata.

Sintassi

DriveObject.TotalSize

Esempio

<%
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

<Complete Unità Object Reference