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


Python pathlib.PurePath.with_name用法及代碼示例


用法:

PurePath.with_name(name)

返回更改 name 的新路徑。如果原始路徑沒有名稱,則會引發 ValueError:

>>> p = PureWindowsPath('c:/Downloads/pathlib.tar.gz')
>>> p.with_name('setup.py')
PureWindowsPath('c:/Downloads/setup.py')
>>> p = PureWindowsPath('c:/')
>>> p.with_name('setup.py')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/antoine/cpython/default/Lib/pathlib.py", line 751, in with_name
    raise ValueError("%r has an empty name" % (self,))
ValueError: PureWindowsPath('c:/') has an empty name

相關用法


注:本文由純淨天空篩選整理自python.org大神的英文原創作品 pathlib.PurePath.with_name。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。