<Complete Reference dosar obiect
Proprietatea Dimensiune este utilizat pentru a reveni dimensiunea, în octeți, a fișierului sau a dosarului specificat.
Sintaxă
FileObject.Size
FolderObject.Size
Exemplu pentru obiectul fișier
<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFile("c:\test.asp")
Response.Write("The size of test.asp is: ")
Response.Write(f.Size & " bytes.")
set f=nothing
set fs=nothing
%>
Output:
The size of test.asp is: 10556 bytes.
Exemplu pentru obiect Folder
<%
dim fs,fo
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("c:\test")
Response.Write("The size of the folder test is: ")
Response.Write(fo.Size & " bytes.")
set fo=nothing
set fs=nothing
%>
Output:
The size of the folder test is: 123456 bytes.
<Complete Reference dosar obiect