ฉันมีคำถามเกี่ยวกับโครงสร้าง if - else ในไฟล์แบตช์ แต่ละคำสั่งทำงานทีละคำสั่ง แต่ฉันไม่สามารถใช้บล็อก "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%"
)