在Python中为不同的操作系统构建文件路径

时间:2017-08-16 17:18:05

标签: python linux windows filepath

如何使用python构建一个不同于运行脚本的操作系统的路径?

E.g。我正在Linux上运行一个脚本,我想在其中构建Windows路径

winPath = os.path.join(winRoot, dir, subdir) #doesn't work when script is run on linux

1 个答案:

答案 0 :(得分:1)

Check this doc page

导入ntpath模块以生成Windows路径。

winPath = os.join.path(winRoot, dir, subdir)

变为

winPath = ntpath.join(winRoot, dir, subdir)