I have a long, complex, command line that looks like this:
@For /D %Artist in (E:\Multi-media\Music\Consolidated\*) Do (Echo %Artist & For /D %Album in ("%Artist\*") Do (Echo %@Name[%Album] & For /O:u %Song in ("%Album\*.m*;*.wma") Do (Echo %@Name[%Song])))
The result of entering this line and hitting the "Enter" key is a TCC crash. (Screen shot in attached .png file.)
The crash does not happen if I remove the sort option ("/O:u"), but that doesn't give me the output I want - the songs in each directory listed in alphabetical order by name. (I know that "u" means unsorted but I am hoping that the fire names are sorted in the directory; removing the sort option yields all of the mp3 files followed by all of the wma files rather than interleaving them as I want. And if the names in the actual directory are in a random order I consider that to be better than showing all of the .mp3 files followed by all of the .wma files as is done now.)
I would attach the log file(s) but there doesn't seem to be any. The installation directory does not contain any ; nor does the c:\users\<username>\appdata\local\jpsoft directory. (Actually it contains two log files - TCC.log and tcmd.log, both virtually empty (2 bytes) and both dated the 11th of June of last year.)
@For /D %Artist in (E:\Multi-media\Music\Consolidated\*) Do (Echo %Artist & For /D %Album in ("%Artist\*") Do (Echo %@Name[%Album] & For /O:u %Song in ("%Album\*.m*;*.wma") Do (Echo %@Name[%Song])))
The result of entering this line and hitting the "Enter" key is a TCC crash. (Screen shot in attached .png file.)
The crash does not happen if I remove the sort option ("/O:u"), but that doesn't give me the output I want - the songs in each directory listed in alphabetical order by name. (I know that "u" means unsorted but I am hoping that the fire names are sorted in the directory; removing the sort option yields all of the mp3 files followed by all of the wma files rather than interleaving them as I want. And if the names in the actual directory are in a random order I consider that to be better than showing all of the .mp3 files followed by all of the .wma files as is done now.)
I would attach the log file(s) but there doesn't seem to be any. The installation directory does not contain any ; nor does the c:\users\<username>\appdata\local\jpsoft directory. (Actually it contains two log files - TCC.log and tcmd.log, both virtually empty (2 bytes) and both dated the 11th of June of last year.)