再次检查脚本的最佳方式是什么?
What is the best way to go through your script once more?
我有一个脚本可以将一些文件从一些文件夹复制到另一个文件夹。如果文件夹存在,我正在检查 if 条件,如果它们不存在,则脚本转到 else 并创建所需的文件夹。
在不重新启动脚本的情况下复制文件的最佳方法是什么?
不要使用 Else:
If Not FolderExists(Src) Then
need Src!
Quit
End If
If Not FolderExists(Dest) Then
CreateFolder Dest
End If
Copy
我有一个脚本可以将一些文件从一些文件夹复制到另一个文件夹。如果文件夹存在,我正在检查 if 条件,如果它们不存在,则脚本转到 else 并创建所需的文件夹。 在不重新启动脚本的情况下复制文件的最佳方法是什么?
不要使用 Else:
If Not FolderExists(Src) Then
need Src!
Quit
End If
If Not FolderExists(Dest) Then
CreateFolder Dest
End If
Copy