用法:
PurePath.is_absolute()
返回路徑是否為絕對路徑。如果路徑同時具有根和(如果風格允許)驅動器,則該路徑被認為是絕對路徑:
>>> PurePosixPath('/a/b').is_absolute() True >>> PurePosixPath('a/b').is_absolute() False >>> PureWindowsPath('c:/a/b').is_absolute() True >>> PureWindowsPath('/a/b').is_absolute() False >>> PureWindowsPath('c:').is_absolute() False >>> PureWindowsPath('//some/share').is_absolute() True
相關用法
- Python pathlib.PurePath.is_relative_to用法及代碼示例
- Python pathlib.PurePath.is_reserved用法及代碼示例
- Python pathlib.PurePath.with_stem用法及代碼示例
- Python pathlib.PurePath.name用法及代碼示例
- Python pathlib.PurePath.with_suffix用法及代碼示例
- Python pathlib.PurePath.as_posix用法及代碼示例
- Python pathlib.PurePath.root用法及代碼示例
- Python pathlib.PurePath.anchor用法及代碼示例
- Python pathlib.PurePath.as_uri用法及代碼示例
- Python pathlib.PurePath.suffix用法及代碼示例
- Python pathlib.PurePath.match用法及代碼示例
- Python pathlib.PurePath.with_name用法及代碼示例
- Python pathlib.PurePath.suffixes用法及代碼示例
- Python pathlib.PurePath.parent用法及代碼示例
- Python pathlib.PurePath.stem用法及代碼示例
- Python pathlib.PurePath.parents用法及代碼示例
- Python pathlib.PurePath.parts用法及代碼示例
- Python pathlib.PurePath.joinpath用法及代碼示例
- Python pathlib.PurePath.drive用法及代碼示例
- Python pathlib.PurePath.relative_to用法及代碼示例
注:本文由純淨天空篩選整理自python.org大神的英文原創作品 pathlib.PurePath.is_absolute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。