我想对具有在变量中定义的扩展名的图像做一些事情。以下脚本运行良好:
set AllowExt="jpg png bmp"
forfiles /p D:\Pictures /m *.* /c "cmd /c if not %AllowExt:jpg=% == %AllowExt% echo @file
但是以下脚本会引发错误
set AllowExt="jpg png bmp"
forfiles /p D:\Pictures /m *.* /c "cmd /c if not %AllowExt:@ext=% == %AllowExt% echo @file"
错误:无效的参数/选项 - 'png'。输入“FORFILES /?” 供使用。