我从这个问题困扰,我想找到文件夹的列表,但有一些问题,我在根目录中有一个支持文件夹,首先我有这个“支持”文件夹的子文件夹然后在我有的每个文件夹找到一个特定的说“x”文件夹然后在这个x文件夹中我想检查每个文件和文件夹。我在这里发送代码。请帮帮我....
dim fs, fso, fo, s, x, f, filePath, a, sfPath
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder(Server.MapPath("support/"))
a = Split(pSku,"-",-1)
for each x in fo.SubFolders
sfPath= "support/" + x.Name + "/" + a(0) + "/"
//a(0) contains a folder name
set s = fs.GetFolder(server.MapPath(sfPath))
set s = nothing
next
请告诉我解决方案..
答案 0 :(得分:0)
如果您想要正确理解问题,如果要扫描特定文件夹的每个子文件/文件夹,则需要使用递归。
创建一个函数,然后让函数在它找到的每个文件夹上调用。