Latest web development tutorials

ASP propiedad TotalSize

Drive Object Reference Referencia completa de la unidad de objetos

El número total de bytes TotalSize propiedad devuelve la unidad o recurso compartido de red especificado.

gramática

DriveObject.TotalSize

Ejemplos

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


Drive Object Reference Referencia completa de la unidad de objetos