2

I have the (console) program flac.exe and I want to be able to decode all flac files to wav in one directory, without have to do each one at a time.

I tried:

flac -d *.flac

But it errors out trying to create the wav file.

2

2 Answers 2

1

Use this on the commandline:

for %i in (*.flac) do flac %i

If you want to put that into a batch file, you have to use %%i instead of %i

Sign up to request clarification or add additional context in comments.

1 Comment

this works! also i tried decoding in bash shell it it works like i wrote it above. flac -d *.flac i had to modify your dos code cause i forgot to include the decode option and the flac files had symbols in their names. for %i in (*.flac) do flac -d "%i" thanks!
0

You can use this bulk rename utility?

Bulk Rename Utility is an easy to use file rename program (a.k.a. file renamer). Renaming multiple files has never been easier! It has a small memory footprint so it can be left running all the time without consuming all your memory. It started as a freeware Visual Basic tool, but as its popularity has grown it has been completely rewritten in C++ to be robust and lightweight - and very, very fast! It can easily handle folders/discs containing well over 100,000 entries... and it can batch rename 1,000s of files in seconds.

1 Comment

I don't see any requirement to rename files in the question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.