gpt4 book ai didi

python - os.path模块如何工作?

转载 作者:行者123 更新时间:2023-12-01 03:24:13 25 4
gpt4 key购买 nike

os.path是python中的一个模块,但我在安装目录中没有找到名为os.path.py的文件>。但是其他模块,比如osstring等,我可以找到对应的实现文件os.pystring.py.

现在,我想知道 os.path 模块是如何工作的?

最佳答案

根据您使用的平台,os.path 实际上是:

  • ntpath.py(适用于 Windows)
  • posixpath.py(适用于 Linux)
  • macpath.py 适用于 Mac OSX

os 模块在文件顶部说明了这一点:

r"""OS routines for NT or Posix depending on what system we're on.

This exports:
- all functions from posix, nt, os2, or ce, e.g. unlink, stat, etc.
- os.path is one of the modules posixpath, or ntpath
- os.name is 'posix', 'nt', 'os2', 'ce' or 'riscos'
- os.curdir is a string representing the current directory ('.' or ':')
- os.pardir is a string representing the parent directory ('..' or '::')
- os.sep is the (or a most common) pathname separator ('/' or ':' or '\\')
- os.extsep is the extension separator ('.' or '/')
- os.altsep is the alternate pathname separator (None or '/')
- os.pathsep is the component separator used in $PATH etc
- os.linesep is the line separator in text files ('\r' or '\n' or '\r\n')
- os.defpath is the default search path for executables
- os.devnull is the file path of the null device ('/dev/null', etc.)

Programs that import and use 'os' stand a better chance of being
portable between different platforms. Of course, they must then
only use functions that are defined by all platforms (e.g., unlink
and opendir), and leave all pathname manipulation to os.path
(e.g., split and join).
"""

关于python - os.path模块如何工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41589485/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com