我对是否-批处理文件中的其他结构有疑问。每个命令都单独运行,但是我不能安全地使用“ if-else”块,因此程序的这些部分无法正常工作。如何使这些零件运行?谢谢。
IF %F%==1 IF %C%==1 (
::copying the file c to d
copy "%sourceFile%" "%destinationFile%"
)
ELSE IF %F%==1 IF %C%==0 (
::moving the file c to d
move "%sourceFile%" "%destinationFile%"
)
ELSE IF %F%==0 IF %C%==1 (
::copying a directory c from d, /s: boş olanlar hariç, /e:boş olanlar dahil
xcopy "%sourceCopyDirectory%" "%destinationCopyDirectory%" /s/e
)
ELSE IF %F%==0 IF %C%==0 (
::moving a directory
xcopy /E "%sourceMoveDirectory%" "%destinationMoveDirectory%"
rd /s /q "%sourceMoveDirectory%"
)
{}
按钮。它有助于使帖子更具可读性,并避免一些标记问题。为回答您的问题,现在开始!撰写问题时,下面有一个预览,因此您可以查看发布后的外观。