利用fso显示某一文件夹中的所有内容
<%
'创建一个FileSystemObject对象的事例
SetMyFileObject=Server.CreateObject("Scripting.FileSystemObject")
path=server.mappath("./folder")'当前目录下folder文件夹目录
'创建一个Folder对象
SetMyFolder=MyFileObject.GetFolder(path)
ForEachthinginMyFolder.SubFolders'获取子文件夹
response.write"<p>目录:"&thing
'MyFileObject.DeleteFolderthing删除文件夹,注意使用
next
'循环显示其中文件
ForEachthinginMyFolder.Files
Response.Write("<p>文件:"&thing)'输出文件路径
'MyFileObject.DeleteFilething'删除这些文件,此删除不可以恢复,需要小心使用
Next
%>
新闻热点
疑难解答