我将此脚本保存在“ test.vbs”中:
Set FSO = CreateObject("Scripting.FileSystemObject")
Set File = FSO.OpenTextFile(workFolder &"\test.txt", 2, True)
File.Write "testing"
File.Close
Set File = Nothing
Set FSO = Nothing
Set workFolder = Nothing
运行脚本时,我想传递“ workFolder”变量的值。
我怎样才能做到这一点?我可以做吗?像“ cscript test.vbs workFolder:'C:\ temp \'”之类的东西?
额外的问题:是否有必要使用“ Set workFolder = Nothing”清除传递的变量,还是VBSCript在终止时自动执行此操作?也许“设置文件=什么都没有”和“设置FSO =什么都没有”也是不必要的吗?如果您知道这两个问题的答案,请告诉我。