如何使用python构建一个不同于运行脚本的操作系统的路径?
E.g。我正在Linux上运行一个脚本,我想在其中构建Windows路径
winPath = os.path.join(winRoot, dir, subdir) #doesn't work when script is run on linux
答案 0 :(得分:1)
导入ntpath模块以生成Windows路径。
winPath = os.join.path(winRoot, dir, subdir)
变为
winPath = ntpath.join(winRoot, dir, subdir)