Audio-Archive-Toolbox Blog
Windows 64 bit command line utility to manage audio file compression
Brought to you by:
cjc1103a
It turns out programs output some things to StandardOutput, and other things to StandardError. So the StandardError stream may contain verbose output as well as errors. To display errors properly, I now search the StandardError stream for the word "error", and then display the entire line containing that word. Yes, it's an ugly hack, and it's not perfect, but "error" is fairly universal word for all error messages, so at least I'll print those messages. I also created another flag "Verbose" which will display the entire StandardError stream, which will include detailed output from some external programs. Yes another hack, but it works.