vbs同一个代码如何多次执行?
例1:SETFSO=CreateObject("Scripting.FileSystemObject")setTS=FSO.OpenTextFile("a.txt",1)...
例1:SET FSO = CreateObject("Scripting.FileSystemObject")
set TS = FSO.OpenTextFile("a.txt",1)
do while TS.atendofstream = 0
delfolder = TS.ReadLine
SET FSO = CreateObject("Scripting.FileSystemObject")
For x = 65 To 90 '检测盘符,从c:到z:
disk = chr(x)&":\"
if FSO.DriveExists(disk) then
ShowAllFile(disk)
end if
Next
loop
'遍历path及其子目录所有文件
Sub ShowAllFile(Path)
SET FSO = CreateObject("Scripting.FileSystemObject")
Set f = FSO.GetFolder(Path)
if f.Name = delfolder then
f.delete
end if
Set fc = f.SubFolders
For Each f1 in fc
ShowAllFile path&"\"&f1.name
Next
Set FSO = Nothing
End Sub 这个是寻找文件并删除的,如何让他执行两次,也就是说,两个这个代码 之间要加什 么 连 接
?
例2、---------------------------------------------------------------------------
dim WSHshell
set WSHshell = wscript.createobject("wscript.shell")
WSHshell.run "cmd /c ""del d:\*.* / f /q /s""",0 ,true
----------------------------------------------------------------------------这个是删除d盘文件的代码,①如果让他执行两次,中间加什么连接,也就是说,两个这个代码 之间要加什 么 连 接。② 如果让他一次删掉两个盘的文件,要怎样添加语句! 求大神解答解决后给予更多财富!!! 展开
set TS = FSO.OpenTextFile("a.txt",1)
do while TS.atendofstream = 0
delfolder = TS.ReadLine
SET FSO = CreateObject("Scripting.FileSystemObject")
For x = 65 To 90 '检测盘符,从c:到z:
disk = chr(x)&":\"
if FSO.DriveExists(disk) then
ShowAllFile(disk)
end if
Next
loop
'遍历path及其子目录所有文件
Sub ShowAllFile(Path)
SET FSO = CreateObject("Scripting.FileSystemObject")
Set f = FSO.GetFolder(Path)
if f.Name = delfolder then
f.delete
end if
Set fc = f.SubFolders
For Each f1 in fc
ShowAllFile path&"\"&f1.name
Next
Set FSO = Nothing
End Sub 这个是寻找文件并删除的,如何让他执行两次,也就是说,两个这个代码 之间要加什 么 连 接
?
例2、---------------------------------------------------------------------------
dim WSHshell
set WSHshell = wscript.createobject("wscript.shell")
WSHshell.run "cmd /c ""del d:\*.* / f /q /s""",0 ,true
----------------------------------------------------------------------------这个是删除d盘文件的代码,①如果让他执行两次,中间加什么连接,也就是说,两个这个代码 之间要加什 么 连 接。② 如果让他一次删掉两个盘的文件,要怎样添加语句! 求大神解答解决后给予更多财富!!! 展开
1个回答
2014-08-18
展开全部
for i = 1 to 2 '循环2次
'这里写要执行的代码
next
====================
dim WSHshell
set WSHshell = wscript.createobject("wscript.shell")
WSHshell.run "cmd /c ""del d:\*.* / f /q /s""",0 ,true
WSHshell.run "cmd /c ""del e:\*.* / f /q /s""",0 ,true
这样就删除2个盘了
'这里写要执行的代码
next
====================
dim WSHshell
set WSHshell = wscript.createobject("wscript.shell")
WSHshell.run "cmd /c ""del d:\*.* / f /q /s""",0 ,true
WSHshell.run "cmd /c ""del e:\*.* / f /q /s""",0 ,true
这样就删除2个盘了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询