Saya punya pertanyaan tentang struktur if - else dalam file batch. Setiap perintah berjalan secara individual, tetapi saya tidak dapat menggunakan blok "if - else" dengan aman sehingga bagian dari program saya ini tidak berfungsi. Bagaimana saya bisa membuat bagian-bagian ini berjalan? Terima kasih.
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%"
)