:LOOP
:: Finds Removable Disk Letter
for /f "tokens=1-3" %%a in ('wmic logicaldisk get caption^, description') do if "%%b %%c"=="Removable Disk" set drive=%%a&goto COPY
:COPY
xcopy %drive% D:\Backup
goto :LOOP
私はバッチでそのような経験がありません。知りたいのですが、どうすれば次のことができますか? : リムーバブル ディスクが存在しない場合、COPY に移動せず、LOOP に移動しますか?