Search found 2 matches
- 20 Jul 2014 09:24
- Forum: DOS Batch Forum
- Topic: Help writing batch file for copying/replacing multiple files
- Replies: 2
- Views: 1919
Re: Help writing batch file for copying/replacing multiple f
Assuming the wav files are all in the tree below "d:\base-wav-folder" then this will replace them. @echo off for /r "d:\base-wav-folder" %%a in (*.wav) do copy "c:\folder\silent.wav" "%%a" pause Fantastic! Thank you! So this is taking my silent.wav (found at ...
- 20 Jul 2014 08:22
- Forum: DOS Batch Forum
- Topic: Help writing batch file for copying/replacing multiple files
- Replies: 2
- Views: 1919
Help writing batch file for copying/replacing multiple files
Hello. I have a very limited knowledge of batch file language and was hoping somebody could give me the commands I would require to achieve the following: My goal is to remove the ambient sounds from a piece of software, and to achieve this what I must do is replace the 2000 individual .wav files us...