我無法找到有關如何在批處理文件中使用文件掩碼的詳細信息。我的要求,批處理文件:文件掩碼
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