--- In [email protected], "david.sotropa" <david.sotr...@...> Is there any way around this or do I need to rename my > folders using something other than the "=" character.
If you are comfortable with scripting and string processing or regular expressions, you could replace Menu FavFolder by script which looks like (not real code) local str = file.readall(pprofolder++"favfolder\_any.txt") //use regex or sting processing to replace any line in var str with = // by line without any equals = orginal line // eg f:/=myfolder/name // becomes f:/myfolder/name = f:/=myfolder/name file.writeall(str,pprofolder++"favfolder\_any.txt") menu favfolder
