如何在批处理文件中写入 If else 条件

如何在批处理文件中写入 If else 条件

我正在编写一个批处理文件来进行备份。我能够编写它,但需要帮助在批处理文件中编写条件。

步骤1:

Zip %Output_Path%\ Apps_backup_%today%.zip \\%Server%\QlikViewfolder\Common\apps\*.qvw

Zip %Output_Path%\Gen_backup_%today%.zip \\%Server%\QlikViewfolder\Common\generators\*.* 

第2步:

Zip %Output_Path%\Daily_backup_%today%.zip %Output_Path%

步骤3:

del \\New folder location\*.zip

步骤4:

Move %Output_Path%\Daily_backup_%today%.zip to  \\New folder location

我的问题:我想在步骤 3 之前给出一个条件,即只有在步骤 2 成功完成后,步骤 3 中的删除才会发生。我该怎么做?

相关内容