我有一个脚本可以将某些文件夹中的某些文件复制到另一个文件夹中。如果文件夹存在,我正在检查if条件,如果它们不存在,脚本将转到else并创建所需的文件夹。 在不重新启动脚本的情况下复制文件的最佳方法是什么?
答案 0 :(得分:0)
不要使用Else:
If Not FolderExists(Src) Then
need Src!
Quit
End If
If Not FolderExists(Dest) Then
CreateFolder Dest
End If
Copy