It is expected - the second part is not relative path (starts with \), and you can not writeos.path.join("c:\abc", "\def")it must beos.path.join("c:\\abc", "\\def")escaping, remember :-)
Post a Comment
1 comment:
It is expected - the second part is not relative path (starts with \), and you can not write
os.path.join("c:\abc", "\def")
it must be
os.path.join("c:\\abc", "\\def")
escaping, remember :-)
Post a Comment