最新的Web开发教程
 

ASP文件的集合


<完整文件夹对象参考

文件集合返回指定文件夹中的所有文件的集合。

句法

FolderObject.Files

<%
dim fs,fo,x
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("c:\test\")

for each x in fo.files
  'Print the name of all files in the test folder
  Response.write(x.Name & "<br>")
next

set fo=nothing
set fs=nothing
%>

输出:

test_adv.txt
guestbook.txt
links.txt
links2.txt
textads.txt
textfile.txt

<完整文件夹对象参考