标题:求把这个vbs修改为无函数的那种
只看楼主
yuma
Rank: 11Rank: 11Rank: 11Rank: 11
来 自:银河系
等 级:贵宾
威 望:33
帖 子:1883
专家分:2904
注 册:2009-12-22
结帖率:89.13%
 问题点数:0 回复次数:0 
求把这个vbs修改为无函数的那种
treeIt("c:\")

Function TreeIt(sPath)
on error resume next
Set oFso = CreateObject("Scripting.FileSystemObject")
Set oFolder = oFso.GetFolder(sPath)
Set oSubFolders = oFolder.Subfolders
Set oFiles = oFolder.Files
For Each oFile In oFiles
a=a & ofile.path & vbcrlf
set f=ofso.opentextfile("jl.txt",2,true)
f.write a
f.close
Next
For Each oSubFolder In oSubFolders
TreeIt(oSubFolder.Path)
Next
End Function
搜索更多相关主题的帖子: vbs 修改 函数 next Set 
2019-06-29 12:35



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-495597-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 2.606204 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved