明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

ASP,F(xiàn)SO遍歷目錄及目錄下文件

[摘要]<%@ Language=VBScript %> <% '我寫的一個遍歷目錄以及目錄下文件的函數(shù), %> <% function bianli(path) set fso=server.CreateObject("scripting.filesyst...

<%@ Language=VBScript %>
<%
'我寫的一個遍歷目錄以及目錄下文件的函數(shù),
%>
<%
function bianli(path)
set fso=server.CreateObject("scripting.filesystemobject")

on error resume next
set objFolder=fso.GetFolder(path)

set objSubFolders=objFolder.Subfolders

for each objSubFolder in objSubFolders

nowpath=path + "\" + objSubFolder.name

Response.Write nowpath

set objFiles=objSubFolder.Files

for each objFile in objFiles
Response.Write "<br>---"
Response.Write objFile.name
next
Response.Write "<p>"
bianli(nowpath)'遞歸

next
set objFolder=nothing
set objSubFolders=nothing
set fso=nothing
end function
%>
<%
bianli("d:") '遍歷d:盤
%>
(出處:Viphot)