考虑以下批处理语句:
for / %f in (C:\temp\cool\*) do if not "%~nf" == "update"
xcopy /r /Y /S /D:01-01-2001 /EXCLUDE:excl.txt %f c:\temp\%~nf\
它使用带有排除列表的文件。这excl.txt
看起来像:
.config
.log
它应该跳过所有文件日志和配置文件。不幸的是,它也跳过了这个文件:
cfw.loginpopup.js
我该如何解决这个问题?我只喜欢排除以.log
.