ASP Size ÊôÐÔ
¶¨ÒåºÍÓ÷¨
Size ÊôÐÔÓÃÓÚ·µ»ØÖ¸¶¨Îļþ»òÎļþ¼ÐµÄ×Ö½ÚÊý¡£
Óï·¨£º
FileObject.Size FolderObject.Size
Õë¶Ô File ¶ÔÏóµÄÀý×Ó
<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFile("c:\help.asp")
Response.Write("The size of test.asp is: ")
Response.Write(f.Size & " bytes.")
set f=nothing
set fs=nothing
%>
Êä³ö£º
The size of help.asp is: 15606 bytes.
Õë¶Ô Folder ¶ÔÏóµÄÀý×Ó
<%
dim fs,fo
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("c:\help")
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 help is: 123456 bytes.