Python os.path.join on Windows
- by Jim
I am trying to learn python and am making a program that will output a script. I want to use os.path.join, but am pretty confused. According to the docs if I say:
os.path.join('c:', 'sourcedir')
I get "C:sourcedir". According to the docs, this is normal, right?
But when I use the copytree command, Python will output it the desired way, for…