PurePath.is_absolute()
Return whether the path is absolute or not. A path is considered absolute if it has both a root and (if the flavour allows) a drive:
1 2 3 4 5 6 7 8 9 10 11 12 13 | >>> 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 |
Please login to continue.