ASP Size ÊôÐÔ

¶¨ÒåºÍÓ÷¨

Size ÊôÐÔÓÃÓÚ·µ»ØÖ¸¶¨µÄÎļþ»òÎļþ¼ÐµÄ×Ö½ÚÊý¡£

Óï·¨£º

FileObject.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: 18665 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: 652398 bytes.
VUE