2016-09-02 9 views
0

私は、次の形式で特定の拡張子を持つファイルに物事を行い、バッチスクリプトがあります(* .XXX)でF %%ためバッチスクリプトで複数の条件を持つファイルをループする方法はありますか?

は(

...

を行います。.. 。

どのように、ループのための同じを使用して(私は多くあるように私は.yyyは思った通りに、.XXXとファイルタイプのため、この作業を行うに行くか)、各ファイルタイプのために1を書きたくありません。 zzz?

Runs a specified command for each file in a set of files. 

FOR %variable IN (set) DO command [command-parameters] 

    %variable Specifies a single letter replaceable parameter. 
    (set)  Specifies a set of one or more files. Wildcards may be used. 
    command Specifies the command to carry out for each file. 
    command-parameters 
      Specifies parameters or switches for the specified command. 

[...] 

そのため、あなたはこのようにそれを行うことができます:forはセット内の1つのまたは複数のファイルを受け入れる助けによると

答えて

1

for %%f in (*.xxx *.yyy *.zzz) do (

    rem (your commands here) 

) 
+0

完璧に働いた、ありがとうございました! –

関連する問題