用法:
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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。