La propiedad de tamaño ASP se utiliza para devolver el tamaño del archivo o carpeta especificado. Devuelve el valor en términos de bytes.
Sintaxis:
- Para archivo Objeto:
FileObject.Size
- Para la carpeta Objeto:
FolderObject.Size
Ejemplo-1: El siguiente código devuelve el tamaño de un archivo.
ASP
<% dim fs,f set fs=Server.CreateObject("Scripting.FileSystemObject") set f=fs.GetFile("d:\GFG.asp") Response.Write("The size of GFG.asp is: ") Response.Write(f.Size & " bytes.") set f=nothing set fs=nothing %>
Producción:
The size of GFG.asp is: 100323 bytes.
Ejemplo-2: El siguiente código devuelve el tamaño de una carpeta.
ASP
<% dim fs,fo set fs=Server.CreateObject("Scripting.FileSystemObject") set fo=fs.GetFolder("d:\GFG") Response.Write("The size of the folder test is: ") Response.Write(fo.Size & " bytes.") set fo=nothing set fs=nothing %>
Producción
The size of the folder test is: 123456 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