La propiedad AvailableSpace de ASP se utiliza para devolver la cantidad de espacio disponible que queda en una unidad. Devuelve el valor en bytes.
Sintaxis:
DriveObject.AvailableSpace
Ejemplo: El siguiente código ilustra la propiedad ASP Drive.AvailableSpace.
ASP
<% Dim fs,dr Set fs=Server.CreateObject("Scripting.FileSystemObject") 'Getting the drive to be checked Set dr=fs.GetDrive("d:") Response.Write("The drive: " & dr) 'Getting the available space of the drive Response.Write(" has available space: " & dr.AvailableSpace) set dr=nothing set fs=nothing %>
Producción:
The drive: D: has available space: 992345694
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA