使用'/'获取文件路径
getting file path with '/'
如何获得'path/to/file/'
缺少最后一个“/”
In [2]: os.path.join('path', 'to', 'file')
Out[2]: 'path/to/file'
这没有帮助:
In [3]: os.path.join('path', 'to', 'file', '/')
Out[3]: '/'
自己添加即可:os.path.join('path', 'to', 'file') + os.path.sep
试过了吗:os.path.join('path','to','file'+os.sep)
如何获得'path/to/file/'
缺少最后一个“/”
In [2]: os.path.join('path', 'to', 'file')
Out[2]: 'path/to/file'
这没有帮助:
In [3]: os.path.join('path', 'to', 'file', '/')
Out[3]: '/'
自己添加即可:os.path.join('path', 'to', 'file') + os.path.sep
试过了吗:os.path.join('path','to','file'+os.sep)