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

遍歷目錄以及目錄下文件的函數(shù)

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

<%@ 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 "
---"
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:盤
%>