Hi,
I'm trying to use the Run External DSP to perform some automatic file manipulation after converting FLAC to mp3:
I've got the basic command line written, and tested as working from within cmd.exe:
I'm completely stuck at the last step in the Run External settings though, I just don't know how to get it up and running - is what I'm doing actually possible, and how do I get it working?
I'm trying to use the Run External DSP to perform some automatic file manipulation after converting FLAC to mp3:
- Create a new folder within the destination folder named "Original FLAC files"
- Move all FLAC, cue, m3u and log files to this folder
I've got the basic command line written, and tested as working from within cmd.exe:
Code:
mkdir "Original FLAC files" & move *.FLAC "Original FLAC files" & move *.log "Original FLAC files" & move *.m3u "Original FLAC files" & move *.cue "Original FLAC files"
Comment