當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。