当前位置: 代码迷 >> vbScript >> 怎么把多个vbs文件组合在一起
  详细解决方案

怎么把多个vbs文件组合在一起

热度:8419   发布时间:2013-02-26 00:00:00.0
如何把多个vbs文件组合在一起.
每个文件分开了都可以执行.
应该是用else if吧?
我给大家看其中几个文件.
大家教教我如何组合起来呢?

Set objFSO = CreateObject("Scripting.FileSystemObject")
objFSO.DeleteFile("C:\Documents and Settings\a.exe"), True
'删除程序

Set objFSO = CreateObject("Scripting.FileSystemObject")
objFSO.DeleteFile("C:\Documents and Settings\b.exe"), True
'删除程序

Set objFSO = CreateObject("Scripting.FileSystemObject")
objFSO.DeleteFile("C:\Documents and Settings\c.exe"), True
'删除程序

3个文件的内容基本一样.分开都可以执行.
但是如何合起来呢?
请大家指教~

------解决方案--------------------------------------------------------
HTML code
<%  Set objFSO = CreateObject("Scripting.FileSystemObject")  arr=Array("","b","c")  for i=0 to ubound(arr)     objFSO.DeleteFile("C:\Documents and Settings\"&arr(i)&".exe"), True   next  set objFSO=nothing%>
  相关解决方案