ASP Size 属性
asp size 属性
完整的 file 对象参考手册size 属性用于返回指定文件或文件夹的字节数。
语法
fileobject.size
folderobject.size
folderobject.size
针对 file 对象的实例
<%
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
%>
输出:
the size of test.asp is: 10556 bytes.
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
%>
输出:
the size of test.asp is: 10556 bytes.
针对 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
%>
输出:
the size of the folder test is: 123456 bytes.
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
%>
输出:
the size of the folder test is: 123456 bytes.
完整的 file 对象参考手册
相关文章
- ASP Cookies
- ASP Session 对象
- ASP FileSystem 对象
- ASP Dictionary 对象
- AJAX 数据库
- ASP SkipLine 方法
- ASP WriteLine 方法
- ASP DateCreated 属性
- ASP Path 属性
- ASP Files 集合
- ASP CreateTextFile 方法
- ASP Exists 方法
- ASP Cookies 集合
- ASP Charset 属性
- ASP Status 属性
- ASP StaticObjects 集合
- ASP Contents.RemoveAll 方法
- ASP GetLastError 方法
- ASP DeleteFolder 方法
- ASP GetFile 方法