当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python pathlib.PurePath.relative_to用法及代码示例


用法:

PurePath.relative_to(*other)

计算此路径相对于 other 表示的路径的版本。如果不可能,则引发ValueError:

>>> p = PurePosixPath('/etc/passwd')
>>> p.relative_to('/')
PurePosixPath('etc/passwd')
>>> p.relative_to('/etc')
PurePosixPath('passwd')
>>> p.relative_to('/usr')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "pathlib.py", line 694, in relative_to
    .format(str(self), str(formatted)))
ValueError: '/etc/passwd' is not in the subpath of '/usr' OR one path is relative and the other absolute.

注意:此函数是PurePath 的一部分,适用于字符串。它不检查或访问底层文件结构。

相关用法


注:本文由纯净天空筛选整理自python.org大神的英文原创作品 pathlib.PurePath.relative_to。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。