Reply to thread

Problem solved - BUG


Ok, I found the solution.  There is a little bug in the string replacement algorithm.


During the compilation of the replacements, it sets the replacement strings to lowercase.   Unfortunately, it does not do the same with the filenames before parsing.  Thus, it does not replace the uppercase strings in the filename.


The solution is to either remove the "ToLower" function when compiling the replacement list or add "ToLower" to the filename parsing.


Doug


Top Bottom