我正在尝试使用 Windows 批处理脚本将文件移动到所需的路径。(.bat) 但是,发生此错误并且代码未执行。
value for '/c' option cannot be more than 253 characters
我还没有找到解决这个问题的方法。如何修复此代码?
forfiles /p %sourceDir% /d %date% /c "cmd /c if exist %backupDir%\@file ( echo @file 'Backup File Found' ) else ( if exist %targetDir%\@file ( echo @file 'Target File Found' ) else ( if /i @ext==\"partial\" ( echo @file 'Download is in progress' ) else ( copy @file %targetDir% ) ) )"