我无法找到有关如何在批处理文件中使用文件掩码的详细信息。我的要求,批处理文件:文件掩码
forfiles -p "C:\what\ever" -s -m *.log -c "cmd /c somecommmand"
,而不是选择所有的日志文件(* .LOG),如何选择所有具有在最后一个整数后缀的日志文件。例如,在下面的文件,
test.log, test1.log, test2.log, test3.log..
我需要一个文件掩码选择所有除test.log
我试过test*.log
,但slects test.log中也是如此。最好不要包含文件名称部分(测试)。例如,*<0-9d>.log
。
谢谢。
无法正常工作 - 您可以在shell中试用它:'echo> test.log; echo> test1.log; dir test?.log'会找到2个文件。 – schnaader 2010-07-24 17:17:04