文章摘要
这篇文章介绍了名为`listFilesPath`的Visual Basic函数,该函数用于遍历指定文件路径下的所有文件和子文件夹,并将结果输出到日志中。其核心内容包括: 1. 使用计时器对象(`Timer`)记录函数执行时间; 2. 遍历文件夹中的文件和子文件夹,并将文件和子文件夹的名称输出到日志; 3. 计算并输出整个操作过程所用时间; 4. 函数通过创建`scripting.filesystemobject`来访问文件系统操作。 总结来看,该函数实现了对指定文件路径下的所有文件和子文件夹的遍历和统计功能,并对操作过程的时间进行了记录。
Function listFilesPath(filepath)
t1=Timer()
Debug.WriteLine “****现在开始执行计数,用时:”+CStr(t1)
Set fso=CreateObject(“scripting.filesystemobject”)
Set myfolder=fso.GetFolder(filepath)
If fso.FolderExists(filepath) then
Set subcol=myfolder.SubFolders
Set filescol=myfolder.Files
For Each file In filescol
Debug.WriteLine filepath+””+file.name
Next
If subcol.count>0 Then
For Each folder In subcol
‘Debug.WriteLine filepath+””+folder.Name
listFilesPath(filepath+””+folder.Name)
next
Function listFilesPath(filepath)
t1=Timer()
Debug.WriteLine “****现在开始执行计数,用时:”+CStr(t1)
Set fso=CreateObject(“scripting.filesystemobject”)
Set myfolder=fso.GetFolder(filepath)
If fso.FolderExists(filepath) then
Set subcol=myfolder.SubFolders
Set filescol=myfolder.Files
For Each file In filescol
Debug.WriteLine filepath+””+file.name
Next
If subcol.count>0 Then
For Each folder In subcol
‘Debug.WriteLine filepath+””+folder.Name
listFilesPath(filepath+””+folder.Name)
next
End if
Else
Debug.WriteLine “没有该文件系统”
End if
Set filescol=Nothing
Set subcol=nothing
Set fso=Nothing
t2=Timer()
Debug.WriteLine “****现在完成计数,用时:”+CStr(t2)
Debug.WriteLine “整个操作过程用时:”&CStr(t2-t1)&” 秒”
End function
© 版权声明
文章版权归作者所有,未经允许请勿转载。


