Hi,<br><br>I&#39;m using windows and I wanted to make a batch file for encoding of wav files to flac.<br>It encodes all wav files in a directory to flac and write all flac output to a file, after that it opens that file in wordpad.
<br><br>Here is the batch file:<br><br>@ECHO OFF<br>FOR %1 IN (*.wav) DO flac -V --best &quot;%1&quot; 2&lt;&lt; FLAC_output.txt<br>START /MAX wordpad FLAC_output.txt<br>EXIT<br><br>The problem now is: the line &#39;FOR %1 IN (*.wav) DO flac -V --best &quot;%1&quot; 2&lt;&lt; FLAC_output.txt&#39; works perfectly when entered manually in a command line window, BUT when put in a batch file, this line doesn&#39;t do anything at all :-S
<br><br>Maybe some windows users can tell me what I&#39;m doing wrong here?<br><br>thx!!<br>