I\'m currently writing a script which has to check if all specified folders actually exist. I found out I have to use os.path.isdir() with absolute paths.
I have t
Rather than use \, you might want to use the os.path.sep so that your code works on other platforms, then you don't have to escape these either.