La propiedad ASP FreeSpace se utiliza para devolver la cantidad de espacio de almacenamiento gratuito proporcionado a un usuario en una unidad en particular. Devuelve un valor en términos de bytes.
Sintaxis:
DriveObject.FreeSpace
Ejemplo: El siguiente código ilustra la propiedad ASP Drive.FreeSpace.
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 free space on the drive Response.Write(" has " & dr.FreeSpace & " free space") set dr=nothing set fs=nothing %>
Producción:
The drive D: has 8237483934 free space
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA