• pathlib —- 面向对象的文件系统路径
    • 基础使用
    • 纯路径
      • 通用性质
      • 运算符
      • 访问个别部分
      • 方法和特征属性
    • 具体路径
      • 方法
    • 对应的 os 模块的工具

    pathlib —- 面向对象的文件系统路径

    3.4 新版功能.

    源代码Lib/pathlib.py


    该模块提供表示文件系统路径的类,其语义适用于不同的操作系统。路径类被分为提供纯计算操作而没有 I/O 的 纯路径,以及从纯路径继承而来但提供 I/O 操作的 具体路径。../_images/pathlib-inheritance.png如果你以前从未使用过此模块或者不确定在项目中使用哪一个类是正确的,则 Path 总是你需要的。它在运行代码的平台上实例化为一个 具体路径。

    在一些用例中纯路径很有用,例如:

    • 如果你想要在 Unix 设备上操作 Windows 路径(或者相反)。你不应在 Unix 上实例化一个 WindowsPath,但是你可以实例化 PureWindowsPath

    • 你只想操作路径但不想实际访问操作系统。在这种情况下,实例化一个纯路径是有用的,因为它们没有任何访问操作系统的操作。

    参见

    PEP 428:pathlib 模块 — 面向对象的的文件系统路径。

    参见

    对于底层的路径字符串操作,你也可以使用 os.path 模块。

    基础使用

    导入主类:

    1. >>> from pathlib import Path

    列出子目录:

    1. >>> p = Path('.')
    2. >>> [x for x in p.iterdir() if x.is_dir()]
    3. [PosixPath('.hg'), PosixPath('docs'), PosixPath('dist'),
    4. PosixPath('__pycache__'), PosixPath('build')]

    列出当前目录树下的所有 Python 源代码文件:

    1. >>> list(p.glob('**/*.py'))
    2. [PosixPath('test_pathlib.py'), PosixPath('setup.py'),
    3. PosixPath('pathlib.py'), PosixPath('docs/conf.py'),
    4. PosixPath('build/lib/pathlib.py')]

    在目录树中移动:

    1. >>> p = Path('/etc')
    2. >>> q = p / 'init.d' / 'reboot'
    3. >>> q
    4. PosixPath('/etc/init.d/reboot')
    5. >>> q.resolve()
    6. PosixPath('/etc/rc.d/init.d/halt')

    查询路径的属性:

    1. >>> q.exists()
    2. True
    3. >>> q.is_dir()
    4. False

    打开一个文件:

    1. >>> with q.open() as f: f.readline()
    2. ...
    3. '#!/bin/bash\n'

    纯路径

    纯路径对象提供了不实际访问文件系统的路径处理操作。有三种方式来访问这些类,也是不同的风格:

    • class pathlib.PurePath(*pathsegments)
    • 一个通用的类,代表当前系统的路径风格(实例化为 PurePosixPath 或者 PureWindowsPath):
    1. >>> PurePath('setup.py') # Running on a Unix machine
    2. PurePosixPath('setup.py')

    每一个 pathsegments 的元素可能是一个代表路径片段的字符串,一个返回字符串的实现了 os.PathLike 接口的对象,或者另一个路径对象:

    1. >>> PurePath('foo', 'some/path', 'bar')
    2. PurePosixPath('foo/some/path/bar')
    3. >>> PurePath(Path('foo'), Path('bar'))
    4. PurePosixPath('foo/bar')

    pathsegments 为空的时候,假定为当前目录:

    1. >>> PurePath()
    2. PurePosixPath('.')

    当给出一些绝对路径,最后一位将被当作锚(模仿 os.path.join() 的行为):

    1. >>> PurePath('/etc', '/usr', 'lib64')
    2. PurePosixPath('/usr/lib64')
    3. >>> PureWindowsPath('c:/Windows', 'd:bar')
    4. PureWindowsPath('d:bar')

    但是,在 Windows 路径中,改变本地根目录并不会丢弃之前盘符的设置:

    1. >>> PureWindowsPath('c:/Windows', '/Program Files')
    2. PureWindowsPath('c:/Program Files')

    假斜线和单独的点都会被消除,但是双点 (‘..’) 不会,以防改变符号链接的含义。

    1. >>> PurePath('foo//bar')
    2. PurePosixPath('foo/bar')
    3. >>> PurePath('foo/./bar')
    4. PurePosixPath('foo/bar')
    5. >>> PurePath('foo/../bar')
    6. PurePosixPath('foo/../bar')

    (如果你想让 PurePosixPath('foo/../bar') 等同于 PurePosixPath('bar'),那么 you are too young, too simple, sometimes naive! 如果 foo 是一个指向其他其他目录的符号链接,那就出毛病啦。)

    纯路径对象实现了 os.PathLike 接口,允许它们在任何接受此接口的地方使用。

    在 3.6 版更改: 添加了 os.PathLike 接口支持。

    • class pathlib.PurePosixPath(*pathsegments)
    • 一个 PurePath 的子类,路径风格不同于 Windows 文件系统:
    1. >>> PurePosixPath('/etc')
    2. PurePosixPath('/etc')

    pathsegments 参数的指定和 PurePath 相同。

    • class pathlib.PureWindowsPath(*pathsegments)
    • PurePath 的一个子类,路径风格为 Windows 文件系统路径:
    1. >>> PureWindowsPath('c:/Program Files/')
    2. PureWindowsPath('c:/Program Files')

    pathsegments 参数的指定和 PurePath 相同。

    无论你正运行什么系统,你都可以实例化这些类,因为它们提供的操作不做任何系统调用。

    通用性质

    路径是不可变并可哈希的。相同风格的路径可以排序与比较。这些性质尊重对应风格的大小写转换语义:

    1. >>> PurePosixPath('foo') == PurePosixPath('FOO')
    2. False
    3. >>> PureWindowsPath('foo') == PureWindowsPath('FOO')
    4. True
    5. >>> PureWindowsPath('FOO') in { PureWindowsPath('foo') }
    6. True
    7. >>> PureWindowsPath('C:') < PureWindowsPath('d:')
    8. True

    不同风格的路径比较得到不等的结果并且无法被排序:

    1. >>> PureWindowsPath('foo') == PurePosixPath('foo')
    2. False
    3. >>> PureWindowsPath('foo') < PurePosixPath('foo')
    4. Traceback (most recent call last):
    5. File "<stdin>", line 1, in <module>
    6. TypeError: '<' not supported between instances of 'PureWindowsPath' and 'PurePosixPath'

    运算符

    斜杠 / 操作符有助于创建子路径,就像 os.path.join() 一样:

    1. >>> p = PurePath('/etc')
    2. >>> p
    3. PurePosixPath('/etc')
    4. >>> p / 'init.d' / 'apache2'
    5. PurePosixPath('/etc/init.d/apache2')
    6. >>> q = PurePath('bin')
    7. >>> '/usr' / q
    8. PurePosixPath('/usr/bin')

    文件对象可用于任何接受 os.PathLike 接口实现的地方。

    1. >>> import os
    2. >>> p = PurePath('/etc')
    3. >>> os.fspath(p)
    4. '/etc'

    路径的字符串表示法为它自己原始的文件系统路径(以原生形式,例如在 Windows 下使用反斜杠)。你可以传递给任何需要字符串形式路径的函数。

    1. >>> p = PurePath('/etc')
    2. >>> str(p)
    3. '/etc'
    4. >>> p = PureWindowsPath('c:/Program Files')
    5. >>> str(p)
    6. 'c:\\Program Files'

    类似地,在路径上调用 bytes 将原始文件系统路径作为字节对象给出,就像被 os.fsencode() 编码一样:

    1. >>> bytes(p)
    2. b'/etc'

    注解

    只推荐在 Unix 下调用 bytes。在 Windows, unicode 形式是文件系统路径的规范表示法。

    访问个别部分

    为了访问路径独立的部分 (组件),使用以下特征属性:

    • PurePath.parts
    • 一个元组,可以访问路径的多个组件:
    1. >>> p = PurePath('/usr/bin/python3')
    2. >>> p.parts
    3. ('/', 'usr', 'bin', 'python3')
    4.  
    5. >>> p = PureWindowsPath('c:/Program Files/PSF')
    6. >>> p.parts
    7. ('c:\\', 'Program Files', 'PSF')

    (注意盘符和本地根目录是如何重组的)

    方法和特征属性

    纯路径提供以下方法和特征属性:

    • PurePath.drive
    • 一个表示驱动器盘符或命名的字符串,如果存在:
    1. >>> PureWindowsPath('c:/Program Files/').drive
    2. 'c:'
    3. >>> PureWindowsPath('/Program Files/').drive
    4. ''
    5. >>> PurePosixPath('/etc').drive
    6. ''

    UNC 分享也被认作驱动器:

    1. >>> PureWindowsPath('//host/share/foo.txt').drive
    2. '\\\\host\\share'
    • PurePath.root
    • 一个表示(本地或全局)根的字符串,如果存在:
    1. >>> PureWindowsPath('c:/Program Files/').root
    2. '\\'
    3. >>> PureWindowsPath('c:Program Files/').root
    4. ''
    5. >>> PurePosixPath('/etc').root
    6. '/'

    UNC 分享一样拥有根:

    1. >>> PureWindowsPath('//host/share').root
    2. '\\'
    • PurePath.anchor
    • 驱动器和根的联合:
    1. >>> PureWindowsPath('c:/Program Files/').anchor
    2. 'c:\\'
    3. >>> PureWindowsPath('c:Program Files/').anchor
    4. 'c:'
    5. >>> PurePosixPath('/etc').anchor
    6. '/'
    7. >>> PureWindowsPath('//host/share').anchor
    8. '\\\\host\\share\\'
    • PurePath.parents
    • An immutable sequence providing access to the logical ancestors ofthe path:
    1. >>> p = PureWindowsPath('c:/foo/bar/setup.py')
    2. >>> p.parents[0]
    3. PureWindowsPath('c:/foo/bar')
    4. >>> p.parents[1]
    5. PureWindowsPath('c:/foo')
    6. >>> p.parents[2]
    7. PureWindowsPath('c:/')
    • PurePath.parent
    • 此路径的逻辑父路径:
    1. >>> p = PurePosixPath('/a/b/c/d')
    2. >>> p.parent
    3. PurePosixPath('/a/b/c')

    你不能超过一个 anchor 或空路径:

    1. >>> p = PurePosixPath('/')
    2. >>> p.parent
    3. PurePosixPath('/')
    4. >>> p = PurePosixPath('.')
    5. >>> p.parent
    6. PurePosixPath('.')

    注解

    这是一个单纯的词法操作,因此有以下行为:

    1. >>> p = PurePosixPath('foo/..')
    2. >>> p.parent
    3. PurePosixPath('foo')

    如果你想要向上移动任意文件系统路径,推荐先使用 Path.resolve() 来解析符号链接以及消除 ".." 组件。

    • PurePath.name
    • 一个表示最后路径组件的字符串,排除了驱动器与根目录,如果存在的话:
    1. >>> PurePosixPath('my/library/setup.py').name
    2. 'setup.py'

    UNC 驱动器名不被考虑:

    1. >>> PureWindowsPath('//some/share/setup.py').name
    2. 'setup.py'
    3. >>> PureWindowsPath('//some/share').name
    4. ''
    • PurePath.suffix
    • 最后一个组件的文件扩展名,如果存在:
    1. >>> PurePosixPath('my/library/setup.py').suffix
    2. '.py'
    3. >>> PurePosixPath('my/library.tar.gz').suffix
    4. '.gz'
    5. >>> PurePosixPath('my/library').suffix
    6. ''
    • PurePath.suffixes
    • 路径的文件扩展名列表:
    1. >>> PurePosixPath('my/library.tar.gar').suffixes
    2. ['.tar', '.gar']
    3. >>> PurePosixPath('my/library.tar.gz').suffixes
    4. ['.tar', '.gz']
    5. >>> PurePosixPath('my/library').suffixes
    6. []
    • PurePath.stem
    • 最后一个路径组件,除去后缀:
    1. >>> PurePosixPath('my/library.tar.gz').stem
    2. 'library.tar'
    3. >>> PurePosixPath('my/library.tar').stem
    4. 'library'
    5. >>> PurePosixPath('my/library').stem
    6. 'library'
    • PurePath.as_posix()
    • 返回使用正斜杠(/)的路径字符串:
    1. >>> p = PureWindowsPath('c:\\windows')
    2. >>> str(p)
    3. 'c:\\windows'
    4. >>> p.as_posix()
    5. 'c:/windows'
    • PurePath.as_uri()
    • 将路径表示为 file URL。如果并非绝对路径,抛出 ValueError
    1. >>> p = PurePosixPath('/etc/passwd')
    2. >>> p.as_uri()
    3. 'file:///etc/passwd'
    4. >>> p = PureWindowsPath('c:/Windows')
    5. >>> p.as_uri()
    6. 'file:///c:/Windows'
    • PurePath.is_absolute()
    • 返回此路径是否为绝对路径。如果路径同时拥有驱动器符与根路径(如果风格允许)则将被认作绝对路径。
    1. >>> PurePosixPath('/a/b').is_absolute()
    2. True
    3. >>> PurePosixPath('a/b').is_absolute()
    4. False
    5.  
    6. >>> PureWindowsPath('c:/a/b').is_absolute()
    7. True
    8. >>> PureWindowsPath('/a/b').is_absolute()
    9. False
    10. >>> PureWindowsPath('c:').is_absolute()
    11. False
    12. >>> PureWindowsPath('//some/share').is_absolute()
    13. True
    • PurePath.is_reserved()
    • PureWindowsPath,如果路径是被 Windows 保留的则返回 True,否则 False。在 PurePosixPath,总是返回 False
    1. >>> PureWindowsPath('nul').is_reserved()
    2. True
    3. >>> PurePosixPath('nul').is_reserved()
    4. False

    当保留路径上的文件系统被调用,则可能出现玄学失败或者意料之外的效应。

    • PurePath.joinpath(*other)
    • 调用此方法等同于将每个 other 参数中的项目连接在一起:
    1. >>> PurePosixPath('/etc').joinpath('passwd')
    2. PurePosixPath('/etc/passwd')
    3. >>> PurePosixPath('/etc').joinpath(PurePosixPath('passwd'))
    4. PurePosixPath('/etc/passwd')
    5. >>> PurePosixPath('/etc').joinpath('init.d', 'apache2')
    6. PurePosixPath('/etc/init.d/apache2')
    7. >>> PureWindowsPath('c:').joinpath('/Program Files')
    8. PureWindowsPath('c:/Program Files')
    • PurePath.match(pattern)
    • 将此路径与提供的通配符风格的模式匹配。如果匹配成功则返回 True,否则返回 False

    如果 pattern 是相对的,则路径可以是相对路径或绝对路径,并且匹配是从右侧完成的:

    1. >>> PurePath('a/b.py').match('*.py')
    2. True
    3. >>> PurePath('/a/b/c.py').match('b/*.py')
    4. True
    5. >>> PurePath('/a/b/c.py').match('a/*.py')
    6. False

    如果 pattern 是绝对的,则路径必须是绝对的,并且路径必须完全匹配:

    1. >>> PurePath('/a.py').match('/*.py')
    2. True
    3. >>> PurePath('a/b.py').match('/*.py')
    4. False

    与其他方法一样,可以观察到大小写区分:

    1. >>> PureWindowsPath('b.py').match('*.PY')
    2. True
    • PurePath.relativeto(*other_)
    • 计算此路径相对 other 表示路径的版本。如果不可计算,则抛出 ValueError:
    1. >>> p = PurePosixPath('/etc/passwd')
    2. >>> p.relative_to('/')
    3. PurePosixPath('etc/passwd')
    4. >>> p.relative_to('/etc')
    5. PurePosixPath('passwd')
    6. >>> p.relative_to('/usr')
    7. Traceback (most recent call last):
    8. File "<stdin>", line 1, in <module>
    9. File "pathlib.py", line 694, in relative_to
    10. .format(str(self), str(formatted)))
    11. ValueError: '/etc/passwd' does not start with '/usr'
    • PurePath.withname(_name)
    • 返回一个新的路径并修改 name。如果原本路径没有 name,ValueError 被抛出:
    1. >>> p = PureWindowsPath('c:/Downloads/pathlib.tar.gz')
    2. >>> p.with_name('setup.py')
    3. PureWindowsPath('c:/Downloads/setup.py')
    4. >>> p = PureWindowsPath('c:/')
    5. >>> p.with_name('setup.py')
    6. Traceback (most recent call last):
    7. File "<stdin>", line 1, in <module>
    8. File "/home/antoine/cpython/default/Lib/pathlib.py", line 751, in with_name
    9. raise ValueError("%r has an empty name" % (self,))
    10. ValueError: PureWindowsPath('c:/') has an empty name
    • PurePath.withsuffix(_suffix)
    • 返回一个新的路径并修改 suffix。如果原本的路径没有后缀,新的 suffix 则被追加以代替。如果 suffix 是空字符串,则原本的后缀被移除:
    1. >>> p = PureWindowsPath('c:/Downloads/pathlib.tar.gz')
    2. >>> p.with_suffix('.bz2')
    3. PureWindowsPath('c:/Downloads/pathlib.tar.bz2')
    4. >>> p = PureWindowsPath('README')
    5. >>> p.with_suffix('.txt')
    6. PureWindowsPath('README.txt')
    7. >>> p = PureWindowsPath('README.txt')
    8. >>> p.with_suffix('')
    9. PureWindowsPath('README')

    具体路径

    具体路径是纯路径的子类。除了后者提供的操作之外,它们还提供了对路径对象进行系统调用的方法。有三种方法可以实例化具体路径:

    • class pathlib.Path(*pathsegments)
    • 一个 PurePath 的子类,此类以当前系统的路径风格表示路径(实例化为 PosixPathWindowsPath):
    1. >>> Path('setup.py')
    2. PosixPath('setup.py')

    pathsegments 参数的指定和 PurePath 相同。

    • class pathlib.PosixPath(*pathsegments)
    • 一个 PathPurePosixPath 的子类,此类表示一个非 Windows 文件系统的具体路径:
    1. >>> PosixPath('/etc')
    2. PosixPath('/etc')

    pathsegments 参数的指定和 PurePath 相同。

    • class pathlib.WindowsPath(*pathsegments)
    • PathPureWindowsPath 的子类,从类表示一个 Windows 文件系统的具体路径:
    1. >>> WindowsPath('c:/Program Files/')
    2. WindowsPath('c:/Program Files')

    pathsegments 参数的指定和 PurePath 相同。

    你只能实例化与当前系统风格相同的类(允许系统调用作用于不兼容的路径风格可能在应用程序中导致缺陷或失败):

    1. >>> import os
    2. >>> os.name
    3. 'posix'
    4. >>> Path('setup.py')
    5. PosixPath('setup.py')
    6. >>> PosixPath('setup.py')
    7. PosixPath('setup.py')
    8. >>> WindowsPath('setup.py')
    9. Traceback (most recent call last):
    10. File "<stdin>", line 1, in <module>
    11. File "pathlib.py", line 798, in __new__
    12. % (cls.__name__,))
    13. NotImplementedError: cannot instantiate 'WindowsPath' on your system

    方法

    除纯路径方法外,实体路径还提供以下方法。 如果系统调用失败(例如因为路径不存在)这些方法中许多都会引发 OSError

    在 3.8 版更改: 对于包含 OS 层级无法表示字符的路径,exists(), is_dir(), is_file(), is_mount(), is_symlink(), is_block_device(), is_char_device(), is_fifo(), is_socket() 现在将返回 False 而不是引发异常。

    • classmethod Path.cwd()
    • 返回一个新的表示当前目录的路径对象(和 os.getcwd() 返回的相同):
    1. >>> Path.cwd()
    2. PosixPath('/home/antoine/pathlib')
    • classmethod Path.home()
    • 返回一个表示当前用户家目录的新路径对象(和 os.path.expanduser() 构造含 ~ 路径返回的相同):
    1. >>> Path.home()
    2. PosixPath('/home/antoine')

    3.5 新版功能.

    • Path.stat()
    • 返回此路径的信息(类似于 os.stat())。结果在每次调用此方法时都重新产生。
    1. >>> p = Path('setup.py')
    2. >>> p.stat().st_size
    3. 956
    4. >>> p.stat().st_mtime
    5. 1327883547.852554
    • Path.chmod(mode)
    • 改变文件的模式和权限,和 os.chmod() 一样:
    1. >>> p = Path('setup.py')
    2. >>> p.stat().st_mode
    3. 33277
    4. >>> p.chmod(0o444)
    5. >>> p.stat().st_mode
    6. 33060
    • Path.exists()
    • 此路径是否指向一个已存在的文件或目录:
    1. >>> Path('.').exists()
    2. True
    3. >>> Path('setup.py').exists()
    4. True
    5. >>> Path('/etc').exists()
    6. True
    7. >>> Path('nonexistentfile').exists()
    8. False

    注解

    如果路径指向一个符号链接, exists() 返回此符号链接是否指向存在的文件或目录。

    • Path.expanduser()
    • 返回展开了包含 ~~user 的构造,就和 os.path.expanduser() 一样:
    1. >>> p = PosixPath('~/films/Monty Python')
    2. >>> p.expanduser()
    3. PosixPath('/home/eric/films/Monty Python')

    3.5 新版功能.

    • Path.glob(pattern)
    • 解析相对于此路径的通配符 pattern,产生所有匹配的文件:
    1. >>> sorted(Path('.').glob('*.py'))
    2. [PosixPath('pathlib.py'), PosixPath('setup.py'), PosixPath('test_pathlib.py')]
    3. >>> sorted(Path('.').glob('*/*.py'))
    4. [PosixPath('docs/conf.py')]

    "**" 模式表示 “此目录以及所有子目录,递归”。换句话说,它启用递归通配:

    1. >>> sorted(Path('.').glob('**/*.py'))
    2. [PosixPath('build/lib/pathlib.py'),
    3. PosixPath('docs/conf.py'),
    4. PosixPath('pathlib.py'),
    5. PosixPath('setup.py'),
    6. PosixPath('test_pathlib.py')]

    注解

    在一个较大的目录树中使用 "**" 模式可能会消耗非常多的时间。

    • Path.group()
    • 返回拥有此文件的用户组。如果文件的 GID 无法在系统数据库中找到,将抛出 KeyError

    • Path.is_dir()

    • 如果路径指向一个目录(或者一个指向目录的符号链接)则返回 True,如果指向其他类型的文件则返回 False

    当路径不存在或者是一个破损的符号链接时也会返回 False;其他错误(例如权限错误)被传播。

    • Path.is_file()
    • 如果路径指向一个正常的文件(或者一个指向正常文件的符号链接)则返回 True,如果指向其他类型的文件则返回 False

    当路径不存在或者是一个破损的符号链接时也会返回 False;其他错误(例如权限错误)被传播。

    • Path.is_mount()
    • 如果路径是一个 挂载点 :在文件系统中被其他不同的文件系统挂载的地点。在 POSIX 系统,此函数检查 path 的父级 —— path/.. 是否处于一个和 path 不同的设备中,或者 file:path/..path 是否指向相同设备的相同 i-node —— 这能检测所有 Unix 以及 POSIX 变种上的挂载点。 Windows 上未实现。

    3.7 新版功能.

    • Path.is_symlink()
    • 如果路径指向符号链接则返回 True, 否则 False

    如果路径不存在也返回 False;其他错误(例如权限错误)被传播。

    • Path.is_socket()
    • 如果路径指向一个 Unix socket 文件(或者指向 Unix socket 文件的符号链接)则返回 True,如果指向其他类型的文件则返回 False

    当路径不存在或者是一个破损的符号链接时也会返回 False;其他错误(例如权限错误)被传播。

    • Path.is_fifo()
    • 如果路径指向一个先进先出存储(或者指向先进先出存储的符号链接)则返回 True ,指向其他类型的文件则返回 False

    当路径不存在或者是一个破损的符号链接时也会返回 False;其他错误(例如权限错误)被传播。

    • Path.is_block_device()
    • 如果文件指向一个块设备(或者指向块设备的符号链接)则返回 True,指向其他类型的文件则返回 False

    当路径不存在或者是一个破损的符号链接时也会返回 False;其他错误(例如权限错误)被传播。

    • Path.is_char_device()
    • 如果路径指向一个字符设备(或指向字符设备的符号链接)则返回 True,指向其他类型的文件则返回 False

    当路径不存在或者是一个破损的符号链接时也会返回 False;其他错误(例如权限错误)被传播。

    • Path.iterdir()
    • 当路径指向一个目录时,产生该路径下的对象的路径:
    1. >>> p = Path('docs')
    2. >>> for child in p.iterdir(): child
    3. ...
    4. PosixPath('docs/conf.py')
    5. PosixPath('docs/_templates')
    6. PosixPath('docs/make.bat')
    7. PosixPath('docs/index.rst')
    8. PosixPath('docs/_build')
    9. PosixPath('docs/_static')
    10. PosixPath('docs/Makefile')
    • Path.lchmod(mode)
    • 就像 Path.chmod() 但是如果路径指向符号链接则是修改符号链接的模式,而不是修改符号链接的目标。

    • Path.lstat()

    • 就和 Path.stat() 一样,但是如果路径指向符号链接,则是返回符号链接而不是目标的信息。

    • Path.mkdir(mode=0o777, parents=False, exist_ok=False)

    • 新建给定路径的目录。如果给出了 mode ,它将与当前进程的 umask 值合并来决定文件模式和访问标志。如果路径已经存在,则抛出 FileExistsError

    如果 parents 为 true,任何找不到的父目录都会伴随着此路径被创建;它们会以默认权限被创建,而不考虑 mode 设置(模仿 POSIX 的 mkdir -p 命令)。

    如果 parents 为 false(默认),则找不到的父级目录会导致 FileNotFoundError 被抛出。

    如果 exist_ok 为 false(默认),则在目标已存在的情况下抛出 FileExistsError

    如果 exist_ok 为 true, 则 FileExistsError 异常将被忽略(和 POSIX mkdir -p 命令行为相同),但是只有在最后一个路径组件不是现存的非目录文件时才生效。

    在 3.5 版更改: exist_ok 形参被加入。

    • Path.open(mode='r', buffering=-1, encoding=None, errors=None, newline=None)
    • 打开路径指向的文件,就像内置的 open() 函数所做的一样:
    1. >>> p = Path('setup.py')
    2. >>> with p.open() as f:
    3. ... f.readline()
    4. ...
    5. '#!/usr/bin/env python3\n'
    • Path.owner()
    • 返回拥有此文件的用户名。如果文件的 UID 无法在系统数据库中找到,则抛出 KeyError

    • Path.read_bytes()

    • 以字节对象的形式返回路径指向的文件的二进制内容:
    1. >>> p = Path('my_binary_file')
    2. >>> p.write_bytes(b'Binary file contents')
    3. 20
    4. >>> p.read_bytes()
    5. b'Binary file contents'

    3.5 新版功能.

    • Path.readtext(_encoding=None, errors=None)
    • 以字符串形式返回路径指向的文件的解码后文本内容。
    1. >>> p = Path('my_text_file')
    2. >>> p.write_text('Text file contents')
    3. 18
    4. >>> p.read_text()
    5. 'Text file contents'

    文件先被打开然后关闭。有和 open() 一样的可选形参。

    3.5 新版功能.

    • Path.rename(target)
    • 将文件或目录重命名为给定的 target,并返回一个新的指向 target 的 Path 实例。 在 Unix 上,如果 target 存在且为一个文件,如果用户有足够权限,则它将被静默地替换。 target 可以是一个字符串或者另一个路径对象:
    1. >>> p = Path('foo')
    2. >>> p.open('w').write('some text')
    3. 9
    4. >>> target = Path('bar')
    5. >>> p.rename(target)
    6. PosixPath('bar')
    7. >>> target.open().read()
    8. 'some text'

    在 3.8 版更改: 添加了返回值,返回新的 Path 实例。

    • Path.replace(target)
    • 将文件名目录重命名为给定的 target,并返回一个新的指向 target 的 Path 实例。 如果 target 指向一个现有文件或目录,则它将被无条件地替换。

    在 3.8 版更改: 添加了返回值,返回新的 Path 实例。

    • Path.resolve(strict=False)
    • 将路径绝对化,解析任何符号链接。返回新的路径对象:
    1. >>> p = Path()
    2. >>> p
    3. PosixPath('.')
    4. >>> p.resolve()
    5. PosixPath('/home/antoine/pathlib')

    ".." 组件也将被消除(只有这一种方法这么做):

    1. >>> p = Path('docs/../setup.py')
    2. >>> p.resolve()
    3. PosixPath('/home/antoine/pathlib/setup.py')

    如果路径不存在并且 strict 设为 True,则抛出 FileNotFoundError。如果 strictFalse,则路径将被尽可能地解析并且任何剩余部分都会被不检查是否存在地追加。如果在解析路径上发生无限循环,则抛出 RuntimeError

    3.6 新版功能: 加入strict 参数(3.6之前的版本相当于strict值为True)

    • Path.rglob(pattern)
    • 这就像调用 Path.glob时在给定的相对 *pattern* 前面添加了&#34;``**/()"
    1. >>> sorted(Path().rglob("*.py"))
    2. [PosixPath('build/lib/pathlib.py'),
    3. PosixPath('docs/conf.py'),
    4. PosixPath('pathlib.py'),
    5. PosixPath('setup.py'),
    6. PosixPath('test_pathlib.py')]
    • Path.rmdir()
    • 移除此目录。此目录必须为空的。

    • Path.samefile(other_path)

    • 返回此目录是否指向与可能是字符串或者另一个路径对象的 other_path 相同的文件。语义类似于 os.path.samefile()os.path.samestat()

    如果两者都以同一原因无法访问,则抛出 OSError

    1. >>> p = Path('spam')
    2. >>> q = Path('eggs')
    3. >>> p.samefile(q)
    4. False
    5. >>> p.samefile('spam')
    6. True

    3.5 新版功能.

    • Path.symlinkto(_target, target_is_directory=False)
    • 将此路径创建为指向 target 的符号链接。在 Windows 下,如果链接的目标是一个目录则 target_is_directory 必须为 true (默认为 False)。在 POSIX 下, target_is_directory 的值将被忽略。
    1. >>> p = Path('mylink')
    2. >>> p.symlink_to('setup.py')
    3. >>> p.resolve()
    4. PosixPath('/home/antoine/pathlib/setup.py')
    5. >>> p.stat().st_size
    6. 956
    7. >>> p.lstat().st_size
    8. 8

    注解

    参数的顺序(link, target) 和 os.symlink() 是相反的。

    • Path.touch(mode=0o666, exist_ok=True)
    • 将给定的路径创建为文件。如果给出了 mode 它将与当前进程的 umask 值合并以确定文件的模式和访问标志。如果文件已经存在,则当 exist_ok 为 true 则函数仍会成功(并且将它的修改事件更新为当前事件),否则抛出 FileExistsError

    • Path.unlink(missing_ok=False)

    • 移除此文件或符号链接。如果路径指向目录,则用 Path.rmdir() 代替。

    如果 missing_ok 为假值(默认),则如果路径不存在将会引发 FileNotFoundError

    如果 missing_ok 为真值,则 FileNotFoundError 异常将被忽略(和 POSIX rm -f 命令的行为相同)。

    在 3.8 版更改: 增加了 missing_ok 形参。

    • Path.linkto(_target)
    • 创建一个指向名为 target 的路径的硬链接。

    在 3.8 版更改.

    • Path.writebytes(_data)
    • 将文件以二进制模式打开,写入 data 并关闭:
    1. >>> p = Path('my_binary_file')
    2. >>> p.write_bytes(b'Binary file contents')
    3. 20
    4. >>> p.read_bytes()
    5. b'Binary file contents'

    一个同名的现存文件将被覆盖。

    3.5 新版功能.

    • Path.writetext(_data, encoding=None, errors=None)
    • 将文件以文本模式打开,写入 data 并关闭:
    1. >>> p = Path('my_text_file')
    2. >>> p.write_text('Text file contents')
    3. 18
    4. >>> p.read_text()
    5. 'Text file contents'

    同名的现有文件会被覆盖。 可选形参的含义与 open() 的相同。

    3.5 新版功能.

    对应的 os 模块的工具

    以下是一个映射了 osPurePath/Path 对应相同的函数的表。

    注解

    尽管 os.path.relpath()PurePath.relative_to() 拥有相同的重叠的用例,但是它们语义相差很大,不能认为它们等价。

    os 和 os.pathpathlib
    os.path.abspath()Path.resolve()
    os.chmod()Path.chmod()
    os.mkdir()Path.mkdir()
    os.rename()Path.rename()
    os.replace()Path.replace()
    os.rmdir()Path.rmdir()
    os.remove(), os.unlink()Path.unlink()
    os.getcwd()Path.cwd()
    os.path.exists()Path.exists()
    os.path.expanduser()Path.expanduser()Path.home()
    os.path.isdir()Path.is_dir()
    os.path.isfile()Path.is_file()
    os.path.islink()Path.is_symlink()
    os.stat()Path.stat(),Path.owner(),Path.group()
    os.path.isabs()PurePath.is_absolute()
    os.path.join()PurePath.joinpath()
    os.path.basename()PurePath.name
    os.path.dirname()PurePath.parent
    os.path.samefile()Path.samefile()
    os.path.splitext()PurePath.suffix