Propiedad de tamaño total de ASP

La propiedad ASP TotalSize se utiliza para devolver el tamaño total de la unidad especificada en el sistema. Devuelve los valores en bytes.

Sintaxis:

DriveObject.TotalSize

Ejemplo: El siguiente código muestra la propiedad ASP Drive.TotalSize.

ASP

<%
dim fs,d
set fs=Server.CreateObject("Scripting.FileSystemObject")
  
'Getting the drive
set d=fs.GetDrive("d:")
  
'Getting the total size of the drive
Response.Write("Total size of drive: " & d.TotalSize & " bytes")
  
set d=nothing
set fs=nothing
%>

Producción:

Total size of drive: 499368587264 bytes

Publicación traducida automáticamente

Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *