Hi,<br><br>I&#39;m using windows so I know the wildcard support for flac is broken. That&#39;s why I use this command to encode a whole directory of WAV-files to FLAC-files in a command prompt:<br><br>for %1 in (*.wav) do flac -V --best &quot;%1&quot;
<br><br>This command is fully working<br><br>Now I want to write the flac output to a file, so I can open this file later.<br>I tried to add &gt; outputfile.txt to the command like this:<br><br>for %1 in (*.wav) do flac -V --best &quot;%1&quot; &gt; 
outputfile.txt<br><br>But this doesn&#39;t work.<br>Does somebody knows what I have to add the my command line to write the flac output to a file? I don&#39;t want to use the Cygwin program, but only the windows command prompt and the official flac tool.
<br><br>thanks in advance!<br>