Windows path in Python

后端 未结 5 1720
悲哀的现实
悲哀的现实 2020-11-21 04:18

What is the best way to represent a Windows directory, for example \"C:\\meshes\\as\"? I have been trying to modify a script but it never works because I can\'t

5条回答
  •  难免孤独
    2020-11-21 04:55

    you can use always:

    'C:/mydir'
    

    this works both in linux and windows. Other posibility is

    'C:\\mydir'
    

    if you have problems with some names you can also try raw string literals:

    r'C:\mydir'
    

    however best practice is to use the os.path module functions that always select the correct configuration for your OS:

    os.path.join(mydir, myfile)
    

    From python 3.4 you can also use the pathlib module. This is equivelent to the above:

    pathlib.Path(mydir, myfile)
    

    or

    pathlib.Path(mydir) / myfile
    

提交回复
热议问题