📜  ASP 大小属性

📅  最后修改于: 2022-05-13 01:56:27.581000             🧑  作者: Mango

ASP 大小属性

ASP size 属性用于返回指定文件或文件夹的大小。它以字节为单位返回值。

句法:

  • 对于文件对象:
FileObject.Size 
  • 对于文件夹对象:
FolderObject.Size 

示例 1:下面的代码返回文件的大小。

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
%>


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
%>


输出:

The size of GFG.asp is: 100323 bytes.

示例 2:下面的代码返回文件夹的大小。

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
%>

输出

The size of the folder test is: 123456 bytes.