2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:mod: `pathlib`  --- Object-oriented filesystem paths
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								===================================================
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  module ::  pathlib
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   :synopsis:  Object-oriented filesystem paths 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-06-11 15:02:54 -04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  versionadded ::  3.4
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								**Source code:**  :source: `Lib/pathlib.py` 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								..  index ::  single: path; operations
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-06-11 15:02:54 -04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								--------------
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								This module offers classes representing filesystem paths with semantics
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								appropriate for different operating systems.  Path classes are divided
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								between :ref: `pure paths <pure-paths>` , which provide purely computational
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								operations without I/O, and :ref: `concrete paths <concrete-paths>` , which
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								inherit from pure paths but also provide I/O operations.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  image ::  pathlib-inheritance.png
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   :align:  center 
 
							 
						 
					
						
							
								
									
										
										
										
											2023-05-10 16:46:37 +03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   :class:  invert-in-dark-mode 
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								If you've never used this module before or just aren't sure which class is
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								right for your task, :class: `Path`  is most likely what you need. It instantiates
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								a :ref: `concrete path <concrete-paths>`  for the platform the code is running on.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Pure paths are useful in some special cases; for example:
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								#.  If you want to manipulate Windows paths on a Unix machine (or vice versa).
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   You cannot instantiate a :class: `WindowsPath`  when running on Unix, but you
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   can instantiate :class: `PureWindowsPath` .
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								#.  You want to make sure that your code only manipulates paths without actually
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   accessing the OS. In this case, instantiating one of the pure classes may be
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   useful since those simply don't have any OS-accessing operations.
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  seealso :: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   :pep:`428`:  The pathlib module -- object-oriented filesystem paths. 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  seealso :: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   For low-level path manipulation on strings, you can also use the
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   :mod: `os.path`  module.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Basic use
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								---------
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Importing the main class::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> from pathlib import Path
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Listing subdirectories::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> p = Path('.')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> [x for x in p.iterdir() if x.is_dir()]
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   [PosixPath('.hg'), PosixPath('docs'), PosixPath('dist'),
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    PosixPath('__pycache__'), PosixPath('build')]
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Listing Python source files in this directory tree::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> list(p.glob('**/* .py'))
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   [PosixPath('test_pathlib.py'), PosixPath('setup.py'),
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    PosixPath('pathlib.py'), PosixPath('docs/conf.py'),
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    PosixPath('build/lib/pathlib.py')]
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Navigating inside a directory tree::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> p = Path('/etc')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> q = p / 'init.d' / 'reboot'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> q
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   PosixPath('/etc/init.d/reboot')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> q.resolve()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   PosixPath('/etc/rc.d/init.d/halt')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Querying path properties::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> q.exists()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   True
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> q.is_dir()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   False
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Opening a file::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> with q.open() as f: f.readline()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ... 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   '#!/bin/bash\n'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-22 14:35:51 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								Exceptions
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								----------
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  exception ::  UnsupportedOperation
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   An exception inheriting :exc: `NotImplementedError`  that is raised when an
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   unsupported operation is called on a path object.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  versionadded ::  3.13
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								..  _pure-paths: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Pure paths
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								----------
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Pure path objects provide path-handling operations which don't actually
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								access a filesystem.  There are three ways to access these classes, which
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								we also call *flavours* :
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  class ::  PurePath(*pathsegments)
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   A generic class that represents the system's path flavour (instantiating
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   it creates either a :class: `PurePosixPath`  or a :class: `PureWindowsPath` )::
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      >>> PurePath('setup.py')      # Running on a Unix machine
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PurePosixPath('setup.py')
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-04-12 00:08:02 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Each element of *pathsegments*  can be either a string representing a
 
							 
						 
					
						
							
								
									
										
										
										
											2023-03-05 23:50:21 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   path segment, or an object implementing the :class: `os.PathLike`  interface
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   where the :meth: `~os.PathLike.__fspath__`  method returns a string,
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   such as another path object::
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      >>> PurePath('foo', 'some/path', 'bar')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PurePosixPath('foo/some/path/bar')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePath(Path('foo'), Path('bar'))
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PurePosixPath('foo/bar')
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   When *pathsegments*  is empty, the current directory is assumed::
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      >>> PurePath()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PurePosixPath('.')
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-01-05 17:49:33 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   If a segment is an absolute path, all previous segments are ignored
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   (like :func: `os.path.join` )::
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      >>> PurePath('/etc', '/usr', 'lib64')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PurePosixPath('/usr/lib64')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PureWindowsPath('c:/Windows', 'd:bar')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PureWindowsPath('d:bar')
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-01-05 17:49:33 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   On Windows, the drive is not reset when a rooted relative path
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   segment (e.g., `` r'\foo' `` ) is encountered::
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      >>> PureWindowsPath('c:/Windows', '/Program Files')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PureWindowsPath('c:/Program Files')
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Spurious slashes and single dots are collapsed, but double dots (`` '..' `` )
 
							 
						 
					
						
							
								
									
										
										
										
											2022-06-11 01:52:36 +03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   and leading double slashes (`` '//' `` ) are not, since this would change the
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   meaning of a path for various reasons (e.g. symbolic links, UNC paths)::
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      >>> PurePath('foo//bar')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PurePosixPath('foo/bar')
 
							 
						 
					
						
							
								
									
										
										
										
											2022-06-11 01:52:36 +03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      >>> PurePath('//foo/bar')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PurePosixPath('//foo/bar')
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      >>> PurePath('foo/./bar')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PurePosixPath('foo/bar')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePath('foo/../bar')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PurePosixPath('foo/../bar')
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   (a naïve approach would make `` PurePosixPath('foo/../bar') ``  equivalent
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   to `` PurePosixPath('bar') `` , which is wrong if `` foo ``  is a symbolic link
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   to another directory)
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-06-10 12:20:49 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Pure path objects implement the :class: `os.PathLike`  interface, allowing them
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   to be used anywhere the interface is accepted.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.6
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Added support for the :class: `os.PathLike`  interface.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  class ::  PurePosixPath(*pathsegments)
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   A subclass of :class: `PurePath` , this path flavour represents non-Windows
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   filesystem paths::
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      >>> PurePosixPath('/etc')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PurePosixPath('/etc')
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   *pathsegments*  is specified similarly to :class: `PurePath` .
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  class ::  PureWindowsPath(*pathsegments)
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   A subclass of :class: `PurePath` , this path flavour represents Windows
 
							 
						 
					
						
							
								
									
										
										
										
											2022-06-11 01:52:36 +03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   filesystem paths, including `UNC paths`_ ::
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      >>> PureWindowsPath('c:/Program Files/')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PureWindowsPath('c:/Program Files')
 
							 
						 
					
						
							
								
									
										
										
										
											2022-06-11 01:52:36 +03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      >>> PureWindowsPath('//server/share/file')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PureWindowsPath('//server/share/file')
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   *pathsegments*  is specified similarly to :class: `PurePath` .
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-06-11 01:52:36 +03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  _unc paths:  https://en.wikipedia.org/wiki/Path_(computing)#UNC
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								Regardless of the system you're running on, you can instantiate all of
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								these classes, since they don't provide any operation that does system calls.
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								General properties
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								^^^^^^^^^^^^^^^^^^
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-02-14 10:20:11 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								Paths are immutable and :term: `hashable` .  Paths of a same flavour are comparable
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								and orderable.  These properties respect the flavour's case-folding
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								semantics::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> PurePosixPath('foo') == PurePosixPath('FOO')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   False
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> PureWindowsPath('foo') == PureWindowsPath('FOO')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   True
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> PureWindowsPath('FOO') in { PureWindowsPath('foo') }
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   True
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> PureWindowsPath('C:') < PureWindowsPath('d:')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   True
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Paths of a different flavour compare unequal and cannot be ordered::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> PureWindowsPath('foo') == PurePosixPath('foo')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   False
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> PureWindowsPath('foo') < PurePosixPath('foo')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Traceback (most recent call last):
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								     File "<stdin>", line 1, in <module>
 
							 
						 
					
						
							
								
									
										
										
										
											2015-10-14 18:25:31 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   TypeError: '<' not supported between instances of 'PureWindowsPath' and 'PurePosixPath'
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Operators
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								^^^^^^^^^
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-01-05 17:49:33 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								The slash operator helps create child paths, like :func: `os.path.join` .
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								If the argument is an absolute path, the previous path is ignored.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								On Windows, the drive is not reset when the argument is a rooted
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								relative path (e.g., `` r'\foo' `` )::
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> p = PurePath('/etc')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> p
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   PurePosixPath('/etc')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> p / 'init.d' / 'apache2'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   PurePosixPath('/etc/init.d/apache2')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> q = PurePath('bin')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> '/usr' / q
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   PurePosixPath('/usr/bin')
 
							 
						 
					
						
							
								
									
										
										
										
											2023-01-05 14:55:35 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   >>> p / '/an_absolute_path'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   PurePosixPath('/an_absolute_path')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> PureWindowsPath('c:/Windows', '/Program Files')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   PureWindowsPath('c:/Program Files')
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-06-10 12:20:49 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								A path object can be used anywhere an object implementing :class: `os.PathLike` 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								is accepted::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> import os
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> p = PurePath('/etc')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> os.fspath(p)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   '/etc'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								The string representation of a path is the raw filesystem path itself
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								(in native form, e.g. with backslashes under Windows), which you can
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								pass to any function taking a file path as a string::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> p = PurePath('/etc')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> str(p)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   '/etc'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> p = PureWindowsPath('c:/Program Files')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> str(p)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   'c:\\Program Files'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Similarly, calling :class: `bytes`  on a path gives the raw filesystem path as a
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								bytes object, as encoded by :func: `os.fsencode` ::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> bytes(p)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   b'/etc'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  note :: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Calling :class: `bytes`  is only recommended under Unix.  Under Windows,
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   the unicode form is the canonical representation of filesystem paths.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Accessing individual parts
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								^^^^^^^^^^^^^^^^^^^^^^^^^^
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								To access the individual "parts" (components) of a path, use the following
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								property:
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-01-20 22:13:58 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  attribute ::  PurePath.parts
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   A tuple giving access to the path's various components::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = PurePath('/usr/bin/python3')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.parts
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      ('/', 'usr', 'bin', 'python3')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = PureWindowsPath('c:/Program Files/PSF')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.parts
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      ('c:\\', 'Program Files', 'PSF')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   (note how the drive and local root are regrouped in a single part)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Methods and properties
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								^^^^^^^^^^^^^^^^^^^^^^
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-04-13 16:17:59 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  testsetup :: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-08-13 14:54:02 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   from pathlib import PurePath, PurePosixPath, PureWindowsPath
 
							 
						 
					
						
							
								
									
										
										
										
											2017-04-13 16:17:59 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 15:45:02 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								Pure paths provide the following methods and properties:
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-07-19 18:59:55 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  attribute ::  PurePath.pathmod
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   The implementation of the :mod: `os.path`  module used for low-level path
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   operations: either `` posixpath ``  or `` ntpath `` .
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  versionadded ::  3.13
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-01-20 22:13:58 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  attribute ::  PurePath.drive
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   A string representing the drive letter or name, if any::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PureWindowsPath('c:/Program Files/').drive
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      'c:'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PureWindowsPath('/Program Files/').drive
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      ''
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePosixPath('/etc').drive
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      ''
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   UNC shares are also considered drives::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PureWindowsPath('//host/share/foo.txt').drive
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      '\\\\host\\share'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-01-20 22:13:58 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  attribute ::  PurePath.root
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   A string representing the (local or global) root, if any::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PureWindowsPath('c:/Program Files/').root
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      '\\'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PureWindowsPath('c:Program Files/').root
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      ''
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePosixPath('/etc').root
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      '/'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   UNC shares always have a root::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PureWindowsPath('//host/share').root
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      '\\'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-06-11 01:52:36 +03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   If the path starts with more than two successive slashes,
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   :class: `~pathlib.PurePosixPath`  collapses them::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePosixPath('//etc').root
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      '//'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePosixPath('///etc').root
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      '/'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePosixPath('////etc').root
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      '/'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  note :: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      This behavior conforms to *The Open Group Base Specifications Issue 6* ,
 
							 
						 
					
						
							
								
									
										
										
										
											2022-06-21 21:55:18 +03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      paragraph `4.11 Pathname Resolution
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      <https://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap04.html#tag_04_11>`_:
 
							 
						 
					
						
							
								
									
										
										
										
											2022-06-11 01:52:36 +03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      *"A pathname that begins with two successive slashes may be interpreted in
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      an implementation-defined manner, although more than two leading slashes
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      shall be treated as a single slash."*
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-01-20 22:13:58 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  attribute ::  PurePath.anchor
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   The concatenation of the drive and root::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PureWindowsPath('c:/Program Files/').anchor
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      'c:\\'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PureWindowsPath('c:Program Files/').anchor
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      'c:'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePosixPath('/etc').anchor
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      '/'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PureWindowsPath('//host/share').anchor
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      '\\\\host\\share\\'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-01-20 22:13:58 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  attribute ::  PurePath.parents
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   An immutable sequence providing access to the logical ancestors of
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   the path::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = PureWindowsPath('c:/foo/bar/setup.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.parents[0]
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PureWindowsPath('c:/foo/bar')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.parents[1]
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PureWindowsPath('c:/foo')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.parents[2]
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PureWindowsPath('c:/')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-11-20 09:40:39 -06:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.10
  
						 
					
						
							
								
									
										
										
										
											2020-11-23 22:06:22 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      The parents sequence now supports :term: `slices <slice>`  and negative index values.
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-01-20 22:13:58 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  attribute ::  PurePath.parent
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   The logical parent of the path::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = PurePosixPath('/a/b/c/d')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.parent
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PurePosixPath('/a/b/c')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   You cannot go past an anchor, or empty path::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = PurePosixPath('/')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.parent
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PurePosixPath('/')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = PurePosixPath('.')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.parent
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PurePosixPath('.')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  note :: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      This is a purely lexical operation, hence the following behaviour::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								         >>> p = PurePosixPath('foo/..')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								         >>> p.parent
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								         PurePosixPath('foo')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      If you want to walk an arbitrary filesystem path upwards, it is
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      recommended to first call :meth: `Path.resolve`  so as to resolve
 
							 
						 
					
						
							
								
									
										
										
										
											2022-10-18 15:46:18 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      symlinks and eliminate `` ".." ``  components.
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-01-20 22:13:58 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  attribute ::  PurePath.name
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   A string representing the final path component, excluding the drive and
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   root, if any::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePosixPath('my/library/setup.py').name
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      'setup.py'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   UNC drive names are not considered::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PureWindowsPath('//some/share/setup.py').name
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      'setup.py'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PureWindowsPath('//some/share').name
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      ''
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-01-20 22:13:58 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  attribute ::  PurePath.suffix
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-07-13 12:24:54 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   The last dot-separated portion of the final component, if any::
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePosixPath('my/library/setup.py').suffix
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      '.py'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePosixPath('my/library.tar.gz').suffix
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      '.gz'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePosixPath('my/library').suffix
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      ''
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-07-13 12:24:54 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   This is commonly called the file extension.
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-01-20 22:13:58 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  attribute ::  PurePath.suffixes
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-07-13 12:24:54 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   A list of the path's suffixes, often called file extensions::
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePosixPath('my/library.tar.gar').suffixes
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      ['.tar', '.gar']
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePosixPath('my/library.tar.gz').suffixes
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      ['.tar', '.gz']
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePosixPath('my/library').suffixes
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      []
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-01-20 22:13:58 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  attribute ::  PurePath.stem
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   The final path component, without its suffix::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePosixPath('my/library.tar.gz').stem
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      'library.tar'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePosixPath('my/library.tar').stem
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      'library'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePosixPath('my/library').stem
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      'library'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  method ::  PurePath.as_posix()
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Return a string representation of the path with forward slashes (`` / `` )::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = PureWindowsPath('c:\\windows')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> str(p)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      'c:\\windows'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.as_posix()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      'c:/windows'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  method ::  PurePath.as_uri()
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Represent the path as a `` file ``  URI.  :exc: `ValueError`  is raised if
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   the path isn't absolute.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = PurePosixPath('/etc/passwd')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.as_uri()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      'file:///etc/passwd'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = PureWindowsPath('c:/Windows')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.as_uri()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      'file:///c:/Windows'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  method ::  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::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> 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
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-12-17 00:14:27 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  PurePath.is_relative_to(other)
  
						 
					
						
							
								
									
										
										
										
											2019-08-13 14:54:02 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Return whether or not this path is relative to the *other*  path.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = PurePath('/etc/passwd')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.is_relative_to('/etc')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      True
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.is_relative_to('/usr')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      False
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  versionadded ::  3.9
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-12-17 00:14:27 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  deprecated-removed ::  3.12 3.14
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Passing additional arguments is deprecated; if supplied, they are joined
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      with *other* .
 
							 
						 
					
						
							
								
									
										
										
										
											2019-08-13 14:54:02 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								..  method ::  PurePath.is_reserved()
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-26 21:37:12 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   With :class: `PureWindowsPath` , return `` True ``  if the path is considered
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   reserved under Windows, `` False ``  otherwise.  With :class: `PurePosixPath` ,
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   `` False ``  is always returned.
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PureWindowsPath('nul').is_reserved()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      True
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePosixPath('nul').is_reserved()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      False
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   File system calls on reserved paths can fail mysteriously or have
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   unintended effects.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-05-05 20:04:53 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  PurePath.joinpath(*pathsegments)
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 15:45:02 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Calling this method is equivalent to combining the path with each of
 
							 
						 
					
						
							
								
									
										
										
										
											2023-05-05 20:04:53 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   the given *pathsegments*  in turn::
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePosixPath('/etc').joinpath('passwd')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PurePosixPath('/etc/passwd')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePosixPath('/etc').joinpath(PurePosixPath('passwd'))
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PurePosixPath('/etc/passwd')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePosixPath('/etc').joinpath('init.d', 'apache2')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PurePosixPath('/etc/init.d/apache2')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PureWindowsPath('c:').joinpath('/Program Files')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PureWindowsPath('c:/Program Files')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-05-18 23:29:31 +05:30 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  PurePath.match(pattern, *, case_sensitive=None)
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-26 21:37:12 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Match this path against the provided glob-style pattern.  Return `` True `` 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   if matching is successful, `` False ``  otherwise.
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   If *pattern*  is relative, the path can be either relative or absolute,
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   and matching is done from the right::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePath('a/b.py').match('*.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      True
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePath('/a/b/c.py').match('b/*.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      True
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePath('/a/b/c.py').match('a/*.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      False
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   If *pattern*  is absolute, the path must be absolute, and the whole path
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   must match::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePath('/a.py').match('/*.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      True
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePath('a/b.py').match('/*.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      False
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-05-30 21:18:09 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   The *pattern*  may be another path object; this speeds up matching the same
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   pattern against multiple files::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> pattern = PurePath('*.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PurePath('a/b.py').match(pattern)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      True
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-04-19 05:43:11 -04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   As with other methods, case-sensitivity follows platform defaults::
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-04-19 05:43:11 -04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      >>> PurePosixPath('b.py').match('*.PY')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      False
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								      >>> PureWindowsPath('b.py').match('*.PY')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      True
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-05-18 23:29:31 +05:30 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Set *case_sensitive*  to `` True ``  or `` False ``  to override this behaviour.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-24 16:14:09 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.12
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      The *case_sensitive*  parameter was added.
 
							 
						 
					
						
							
								
									
										
										
										
											2023-05-18 23:29:31 +05:30 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-05-30 21:18:09 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.13
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Support for the recursive wildcard "`` ** `` " was added. In previous
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      versions, it acted like the non-recursive wildcard "`` * `` ".
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-12-17 00:14:27 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  PurePath.relative_to(other, walk_up=False)
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Compute a version of this path relative to the path represented by
 
							 
						 
					
						
							
								
									
										
										
										
											2022-10-29 01:20:14 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   *other* .  If it's impossible, :exc: `ValueError`  is raised::
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> 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>
 
							 
						 
					
						
							
								
									
										
										
										
											2022-10-29 01:20:14 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								        File "pathlib.py", line 941, in relative_to
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								          raise ValueError(error_message.format(str(self), str(formatted)))
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      ValueError: '/etc/passwd' is not in the subpath of '/usr' OR one path is relative and the other is absolute.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-12-17 00:14:27 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   When *walk_up*  is False (the default), the path must start with *other* .
 
							 
						 
					
						
							
								
									
										
										
										
											2022-10-29 01:20:14 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   When the argument is True, `` .. ``  entries may be added to form the
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   relative path. In all other cases, such as the paths referencing
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   different drives, :exc: `ValueError`  is raised.::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.relative_to('/usr', walk_up=True)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PurePosixPath('../etc/passwd')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.relative_to('foo', walk_up=True)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Traceback (most recent call last):
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        File "<stdin>", line 1, in <module>
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        File "pathlib.py", line 941, in relative_to
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								          raise ValueError(error_message.format(str(self), str(formatted)))
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      ValueError: '/etc/passwd' is not on the same drive as 'foo' OR one path is relative and the other is absolute.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  warning :: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      This function is part of :class: `PurePath`  and works with strings.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      It does not check or access the underlying file structure.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      This can impact the *walk_up*  option as it assumes that no symlinks
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      are present in the path; call :meth: `~Path.resolve`  first if
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      necessary to resolve symlinks.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-24 16:14:09 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.12
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      The *walk_up*  parameter was added (old behavior is the same as `` walk_up=False `` ).
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-12-17 00:14:27 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  deprecated-removed ::  3.12 3.14
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Passing additional positional arguments is deprecated; if supplied,
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      they are joined with *other* .
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-02-25 20:33:02 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  PurePath.with_name(name)
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Return a new path with the :attr: `name`  changed.  If the original path
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   doesn't have a name, ValueError is raised::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> 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
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-04-19 17:29:49 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  PurePath.with_stem(stem)
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Return a new path with the :attr: `stem`  changed.  If the original path
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   doesn't have a name, ValueError is raised::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = PureWindowsPath('c:/Downloads/draft.txt')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.with_stem('final')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PureWindowsPath('c:/Downloads/final.txt')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = PureWindowsPath('c:/Downloads/pathlib.tar.gz')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.with_stem('lib')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PureWindowsPath('c:/Downloads/lib.gz')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = PureWindowsPath('c:/')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.with_stem('')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Traceback (most recent call last):
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        File "<stdin>", line 1, in <module>
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        File "/home/antoine/cpython/default/Lib/pathlib.py", line 861, in with_stem
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								          return self.with_name(stem + self.suffix)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        File "/home/antoine/cpython/default/Lib/pathlib.py", line 851, in with_name
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								          raise ValueError("%r has an empty name" % (self,))
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      ValueError: PureWindowsPath('c:/') has an empty name
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  versionadded ::  3.9
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-02-25 20:33:02 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  PurePath.with_suffix(suffix)
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Return a new path with the :attr: `suffix`  changed.  If the original path
 
							 
						 
					
						
							
								
									
										
										
										
											2018-08-03 22:49:42 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   doesn't have a suffix, the new *suffix*  is appended instead.  If the
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   *suffix*  is an empty string, the original suffix is removed::
 
							 
						 
					
						
							
								
									
										
										
										
											2014-02-25 20:33:02 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = PureWindowsPath('c:/Downloads/pathlib.tar.gz')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.with_suffix('.bz2')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PureWindowsPath('c:/Downloads/pathlib.tar.bz2')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = PureWindowsPath('README')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.with_suffix('.txt')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PureWindowsPath('README.txt')
 
							 
						 
					
						
							
								
									
										
										
										
											2018-08-03 22:49:42 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      >>> p = PureWindowsPath('README.txt')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.with_suffix('')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PureWindowsPath('README')
 
							 
						 
					
						
							
								
									
										
										
										
											2014-02-25 20:33:02 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-05-05 20:04:53 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  PurePath.with_segments(*pathsegments)
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Create a new path object of the same type by combining the given
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   *pathsegments* . This method is called whenever a derivative path is created,
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   such as from :attr: `parent`  and :meth: `relative_to` . Subclasses may
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   override this method to pass information to derivative paths, for example::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      from pathlib import PurePosixPath
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      class MyPath(PurePosixPath):
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								          def __init__(self, *pathsegments, session_id):
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								              super().__init__(*pathsegments)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								              self.session_id = session_id
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								          def with_segments(self, *pathsegments):
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								              return type(self)(*pathsegments, session_id=self.session_id)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      etc = MyPath('/etc', session_id=42)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      hosts = etc / 'hosts'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      print(hosts.session_id)  # 42
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  versionadded ::  3.12
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								..  _concrete-paths: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Concrete paths
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								--------------
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Concrete paths are subclasses of the pure path classes.  In addition to
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								operations provided by the latter, they also provide methods to do system
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								calls on path objects.  There are three ways to instantiate concrete paths:
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  class ::  Path(*pathsegments)
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   A subclass of :class: `PurePath` , this class represents concrete paths of
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   the system's path flavour (instantiating it creates either a
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   :class: `PosixPath`  or a :class: `WindowsPath` )::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> Path('setup.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PosixPath('setup.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   *pathsegments*  is specified similarly to :class: `PurePath` .
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  class ::  PosixPath(*pathsegments)
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   A subclass of :class: `Path`  and :class: `PurePosixPath` , this class
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   represents concrete non-Windows filesystem paths::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> PosixPath('/etc')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PosixPath('/etc')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   *pathsegments*  is specified similarly to :class: `PurePath` .
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-22 14:35:51 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.13
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Raises :exc: `UnsupportedOperation`  on Windows. In previous versions,
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      :exc: `NotImplementedError`  was raised instead.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  class ::  WindowsPath(*pathsegments)
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   A subclass of :class: `Path`  and :class: `PureWindowsPath` , this class
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   represents concrete Windows filesystem paths::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> WindowsPath('c:/Program Files/')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      WindowsPath('c:/Program Files')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-28 06:53:05 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   *pathsegments*  is specified similarly to :class: `PurePath` .
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-22 14:35:51 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.13
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Raises :exc: `UnsupportedOperation`  on non-Windows platforms. In previous
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      versions, :exc: `NotImplementedError`  was raised instead.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								You can only instantiate the class flavour that corresponds to your system
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								(allowing system calls on non-compatible path flavours could lead to
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								bugs or failures in your application)::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> import os
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> os.name
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   'posix'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> Path('setup.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   PosixPath('setup.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> PosixPath('setup.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   PosixPath('setup.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   >>> WindowsPath('setup.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Traceback (most recent call last):
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								     File "<stdin>", line 1, in <module>
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								     File "pathlib.py", line 798, in __new__
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								       % (cls.__name__,))
 
							 
						 
					
						
							
								
									
										
										
										
											2023-06-22 14:35:51 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   UnsupportedOperation: cannot instantiate 'WindowsPath' on your system
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Methods
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								^^^^^^^
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Concrete paths provide the following methods in addition to pure paths
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								methods.  Many of these methods can raise an :exc: `OSError`  if a system
 
							 
						 
					
						
							
								
									
										
										
										
											2018-09-18 11:28:51 +03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								call fails (for example because the path doesn't exist).
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  versionchanged ::  3.8
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   :meth: `~Path.exists()` , :meth: `~Path.is_dir()` , :meth: `~Path.is_file()` ,
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   :meth: `~Path.is_mount()` , :meth: `~Path.is_symlink()` ,
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   :meth: `~Path.is_block_device()` , :meth: `~Path.is_char_device()` ,
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   :meth: `~Path.is_fifo()` , :meth: `~Path.is_socket()`  now return `` False `` 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   instead of raising an exception for paths that contain characters
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   unrepresentable at the OS level.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  classmethod ::  Path.cwd()
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Return a new path object representing the current directory (as returned
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   by :func: `os.getcwd` )::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> Path.cwd()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PosixPath('/home/antoine/pathlib')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-01-12 21:03:41 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  classmethod ::  Path.home()
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Return a new path object representing the user's home directory (as
 
							 
						 
					
						
							
								
									
										
										
										
											2021-04-07 23:50:13 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   returned by :func: `os.path.expanduser`  with `` ~ ``  construct). If the home
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   directory can't be resolved, :exc: `RuntimeError`  is raised.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ::
 
							 
						 
					
						
							
								
									
										
										
										
											2015-01-12 21:03:41 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> Path.home()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PosixPath('/home/antoine')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  versionadded ::  3.5
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-04-07 16:53:39 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  Path.stat(*, follow_symlinks=True)
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-03-04 14:51:50 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Return a :class: `os.stat_result`  object containing information about this path, like :func: `os.stat` .
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								   The result is looked up at each call to this method.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-04-07 16:53:39 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   This method normally follows symlinks; to stat a symlink add the argument
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   `` follow_symlinks=False `` , or use :meth: `~Path.lstat` .
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-04-13 16:17:59 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								      >>> p = Path('setup.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.stat().st_size
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      956
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.stat().st_mtime
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      1327883547.852554
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-04-07 16:53:39 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.10
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      The *follow_symlinks*  parameter was added.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  method ::  Path.chmod(mode, *, follow_symlinks=True)
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-04-07 16:53:39 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Change the file mode and permissions, like :func: `os.chmod` .
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-04-07 16:53:39 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   This method normally follows symlinks. Some Unix flavours support changing
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   permissions on the symlink itself; on these platforms you may add the
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   argument `` follow_symlinks=False `` , or use :meth: `~Path.lchmod` .
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ::
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = Path('setup.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.stat().st_mode
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      33277
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.chmod(0o444)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.stat().st_mode
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      33060
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-04-07 16:53:39 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.10
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      The *follow_symlinks*  parameter was added.
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-05-02 23:50:10 -04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  Path.exists(*, follow_symlinks=True)
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-05-02 23:50:10 -04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Return `` True ``  if the path points to an existing file or directory.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   This method normally follows symlinks; to check if a symlink exists, add
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   the argument `` follow_symlinks=False `` .
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ::
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> Path('.').exists()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      True
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> Path('setup.py').exists()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      True
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> Path('/etc').exists()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      True
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> Path('nonexistentfile').exists()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      False
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-05-02 23:50:10 -04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.12
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      The *follow_symlinks*  parameter was added.
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-12-30 20:54:45 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  Path.expanduser()
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Return a new path with expanded `` ~ ``  and `` ~user ``  constructs,
 
							 
						 
					
						
							
								
									
										
										
										
											2021-04-07 23:50:13 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   as returned by :meth: `os.path.expanduser` . If a home directory can't be
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   resolved, :exc: `RuntimeError`  is raised.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ::
 
							 
						 
					
						
							
								
									
										
										
										
											2014-12-30 20:54:45 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = PosixPath('~/films/Monty Python')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.expanduser()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PosixPath('/home/eric/films/Monty Python')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  versionadded ::  3.5
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-05-29 16:59:52 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  Path.glob(pattern, *, case_sensitive=None, follow_symlinks=None)
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-02-11 11:47:09 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Glob the given relative *pattern*  in the directory represented by this path,
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								   yielding all matching files (of any kind)::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> sorted(Path('.').glob('*.py'))
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      [PosixPath('pathlib.py'), PosixPath('setup.py'), PosixPath('test_pathlib.py')]
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> sorted(Path('.').glob('*/* .py'))
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      [PosixPath('docs/conf.py')]
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-04-20 12:45:45 -04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Patterns are the same as for :mod: `fnmatch` , with the addition of "`` ** `` "
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   which means "this directory and all subdirectories, recursively".  In other
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   words, it enables recursive globbing::
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> sorted(Path('.').glob('**/* .py'))
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      [PosixPath('build/lib/pathlib.py'),
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								       PosixPath('docs/conf.py'),
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								       PosixPath('pathlib.py'),
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								       PosixPath('setup.py'),
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								       PosixPath('test_pathlib.py')]
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-06 23:50:36 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  note :: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Using the "`` ** `` " pattern in large directory trees may consume
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      an inordinate amount of time.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  tip :: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Set *follow_symlinks*  to `` True ``  or `` False ``  to improve performance
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      of recursive globbing.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-05-04 17:44:36 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   By default, or when the *case_sensitive*  keyword-only argument is set to
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   `` None `` , this method matches paths using platform-specific casing rules:
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   typically, case-sensitive on POSIX, and case-insensitive on Windows.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Set *case_sensitive*  to `` True ``  or `` False ``  to override this behaviour.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-05-29 16:59:52 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   By default, or when the *follow_symlinks*  keyword-only argument is set to
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   `` None `` , this method follows symlinks except when expanding "`` ** `` "
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   wildcards. Set *follow_symlinks*  to `` True ``  to always follow symlinks, or
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   `` False ``  to treat all symlinks as files.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-03-08 14:31:47 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  audit-event ::  pathlib.Path.glob self,pattern pathlib.Path.glob
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-05-11 07:14:25 +03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.11
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Return only directories if *pattern*  ends with a pathname components
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      separator (:data: `~os.sep`  or :data: `~os.altsep` ).
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-24 16:14:09 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.12
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      The *case_sensitive*  parameter was added.
 
							 
						 
					
						
							
								
									
										
										
										
											2023-05-04 17:44:36 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-24 16:14:09 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.13
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      The *follow_symlinks*  parameter was added.
 
							 
						 
					
						
							
								
									
										
										
										
											2023-05-29 16:59:52 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-08-05 00:12:12 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.13
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Emits :exc: `FutureWarning`  if the pattern ends with "`` ** `` ". In a
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      future Python release, patterns with this ending will match both files
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      and directories. Add a trailing slash to match only directories.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								..  method ::  Path.group()
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-27 14:42:55 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Return the name of the group owning the file.  :exc: `KeyError`  is raised
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								   if the file's gid isn't found in the system database.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-22 14:35:51 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.13
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Raises :exc: `UnsupportedOperation`  if the :mod: `grp`  module is not
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      available. In previous versions, :exc: `NotImplementedError`  was raised.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-26 17:58:17 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  Path.is_dir(*, follow_symlinks=True)
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-26 17:58:17 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Return `` True ``  if the path points to a directory, `` False ``  if it points
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   to another kind of file.
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-26 21:37:12 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   `` False ``  is also returned if the path doesn't exist or is a broken symlink;
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								   other errors (such as permission errors) are propagated.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-26 17:58:17 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   This method normally follows symlinks; to exclude symlinks to directories,
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   add the argument `` follow_symlinks=False `` .
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-26 17:58:17 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.13
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      The *follow_symlinks*  parameter was added.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  method ::  Path.is_file(*, follow_symlinks=True)
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-26 17:58:17 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Return `` True ``  if the path points to a regular file, `` False ``  if it
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   points to another kind of file.
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-26 21:37:12 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   `` False ``  is also returned if the path doesn't exist or is a broken symlink;
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								   other errors (such as permission errors) are propagated.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-26 17:58:17 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   This method normally follows symlinks; to exclude symlinks, add the
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   argument `` follow_symlinks=False `` .
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.13
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      The *follow_symlinks*  parameter was added.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-11-22 09:19:34 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  Path.is_junction()
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Return `` True ``  if the path points to a junction, and `` False ``  for any other
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   type of file. Currently only Windows supports junctions.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  versionadded ::  3.12
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-08-01 16:47:50 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  Path.is_mount()
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Return `` True ``  if the path is a :dfn: `mount point` : a point in a
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   file system where a different file system has been mounted.  On POSIX, the
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   function checks whether *path* 's parent, :file: `path/..` , is on a different
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   device than *path* , or whether :file: `path/..`  and *path*  point to the same
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   i-node on the same device --- this should detect mount points for all Unix
 
							 
						 
					
						
							
								
									
										
										
										
											2022-08-05 23:37:44 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   and POSIX variants.  On Windows, a mount point is considered to be a drive
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   letter root (e.g. `` c:\ `` ), a UNC share (e.g. `` \\server\share `` ), or a
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   mounted filesystem directory.
 
							 
						 
					
						
							
								
									
										
										
										
											2017-08-01 16:47:50 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  versionadded ::  3.7
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-08-05 23:37:44 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.12
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Windows support was added.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-08-01 16:47:50 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								..  method ::  Path.is_symlink()
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-26 21:37:12 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Return `` True ``  if the path points to a symbolic link, `` False ``  otherwise.
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-26 21:37:12 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   `` False ``  is also returned if the path doesn't exist; other errors (such
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								   as permission errors) are propagated.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  method ::  Path.is_socket()
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-26 21:37:12 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Return `` True ``  if the path points to a Unix socket (or a symbolic link
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   pointing to a Unix socket), `` False ``  if it points to another kind of file.
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-26 21:37:12 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   `` False ``  is also returned if the path doesn't exist or is a broken symlink;
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								   other errors (such as permission errors) are propagated.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  method ::  Path.is_fifo()
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-26 21:37:12 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Return `` True ``  if the path points to a FIFO (or a symbolic link
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   pointing to a FIFO), `` False ``  if it points to another kind of file.
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-26 21:37:12 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   `` False ``  is also returned if the path doesn't exist or is a broken symlink;
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								   other errors (such as permission errors) are propagated.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  method ::  Path.is_block_device()
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-26 21:37:12 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Return `` True ``  if the path points to a block device (or a symbolic link
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   pointing to a block device), `` False ``  if it points to another kind of file.
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-26 21:37:12 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   `` False ``  is also returned if the path doesn't exist or is a broken symlink;
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								   other errors (such as permission errors) are propagated.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  method ::  Path.is_char_device()
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-26 21:37:12 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Return `` True ``  if the path points to a character device (or a symbolic link
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   pointing to a character device), `` False ``  if it points to another kind of file.
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-26 21:37:12 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   `` False ``  is also returned if the path doesn't exist or is a broken symlink;
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								   other errors (such as permission errors) are propagated.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  method ::  Path.iterdir()
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   When the path points to a directory, yield path objects of the directory
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   contents::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = Path('docs')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> for child in p.iterdir(): child
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      ... 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PosixPath('docs/conf.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PosixPath('docs/_templates')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PosixPath('docs/make.bat')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PosixPath('docs/index.rst')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PosixPath('docs/_build')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PosixPath('docs/_static')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PosixPath('docs/Makefile')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-09-04 21:19:30 +03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   The children are yielded in arbitrary order, and the special entries
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   `` '.' ``  and `` '..' ``  are not included.  If a file is removed from or added
 
							 
						 
					
						
							
								
									
										
										
										
											2022-03-23 02:51:41 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   to the directory after creating the iterator, whether a path object for
 
							 
						 
					
						
							
								
									
										
										
										
											2020-09-04 21:19:30 +03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   that file be included is unspecified.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-07-23 03:55:46 +04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  Path.walk(top_down=True, on_error=None, follow_symlinks=False)
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Generate the file names in a directory tree by walking the tree
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   either top-down or bottom-up.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   For each directory in the directory tree rooted at *self*  (including
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   *self*  but excluding '.' and '..'), the method yields a 3-tuple of
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   `` (dirpath, dirnames, filenames) `` .
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   *dirpath*  is a :class: `Path`  to the directory currently being walked,
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   *dirnames*  is a list of strings for the names of subdirectories in *dirpath* 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   (excluding `` '.' ``  and `` '..' `` ), and *filenames*  is a list of strings for
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   the names of the non-directory files in *dirpath* . To get a full path
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   (which begins with *self* ) to a file or directory in *dirpath* , do
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   `` dirpath / name `` . Whether or not the lists are sorted is file
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   system-dependent.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   If the optional argument *top_down*  is true (which is the default), the triple for a
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   directory is generated before the triples for any of its subdirectories
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   (directories are walked top-down).  If *top_down*  is false, the triple
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   for a directory is generated after the triples for all of its subdirectories
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   (directories are walked bottom-up). No matter the value of *top_down* , the
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   list of subdirectories is retrieved before the triples for the directory and
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   its subdirectories are walked.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   When *top_down*  is true, the caller can modify the *dirnames*  list in-place
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   (for example, using :keyword: `del`  or slice assignment), and :meth: `Path.walk` 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   will only recurse into the subdirectories whose names remain in *dirnames* .
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   This can be used to prune the search, or to impose a specific order of visiting,
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   or even to inform :meth: `Path.walk`  about directories the caller creates or
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   renames before it resumes :meth: `Path.walk`  again. Modifying *dirnames*  when
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   *top_down*  is false has no effect on the behavior of :meth: `Path.walk()`  since the
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   directories in *dirnames*  have already been generated by the time *dirnames* 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   is yielded to the caller.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   By default, errors from :func: `os.scandir`  are ignored.  If the optional
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   argument *on_error*  is specified, it should be a callable; it will be
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   called with one argument, an :exc: `OSError`  instance. The callable can handle the
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   error to continue the walk or re-raise it to stop the walk. Note that the
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   filename is available as the `` filename ``  attribute of the exception object.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   By default, :meth: `Path.walk`  does not follow symbolic links, and instead adds them
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   to the *filenames*  list. Set *follow_symlinks*  to true to resolve symlinks
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   and place them in *dirnames*  and *filenames*  as appropriate for their targets, and
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   consequently visit directories pointed to by symlinks (where supported).
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  note :: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Be aware that setting *follow_symlinks*  to true can lead to infinite
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      recursion if a link points to a parent directory of itself. :meth: `Path.walk` 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      does not keep track of the directories it has already visited.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  note :: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      :meth: `Path.walk`  assumes the directories it walks are not modified during
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      execution. For example, if a directory from *dirnames*  has been replaced
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      with a symlink and *follow_symlinks*  is false, :meth: `Path.walk`  will
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      still try to descend into it. To prevent such behavior, remove directories
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      from *dirnames*  as appropriate.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  note :: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Unlike :func: `os.walk` , :meth: `Path.walk`  lists symlinks to directories in
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      *filenames*  if *follow_symlinks*  is false.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   This example displays the number of bytes used by all files in each directory,
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   while ignoring `` __pycache__ ``  directories::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      from pathlib import Path
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      for root, dirs, files in Path("cpython/Lib/concurrent").walk(on_error=print):
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        print(
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								            root,
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								            "consumes",
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								            sum((root / file).stat().st_size for file in files),
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								            "bytes in",
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								            len(files),
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								            "non-directory files"
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        )
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        if '__pycache__' in dirs:
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								              dirs.remove('__pycache__')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   This next example is a simple implementation of :func: `shutil.rmtree` .
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Walking the tree bottom-up is essential as :func: `rmdir`  doesn't allow
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   deleting a directory before it is empty::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      # Delete everything reachable from the directory "top".
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      # CAUTION:  This is dangerous! For example, if top == Path('/'),
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      # it could delete all of your files.
 
							 
						 
					
						
							
								
									
										
										
										
											2022-08-27 02:21:40 +05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      for root, dirs, files in top.walk(top_down=False):
 
							 
						 
					
						
							
								
									
										
										
										
											2022-07-23 03:55:46 +04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								          for name in files:
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								              (root / name).unlink()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								          for name in dirs:
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								              (root / name).rmdir()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  versionadded ::  3.12
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								..  method ::  Path.lchmod(mode)
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Like :meth: `Path.chmod`  but, if the path points to a symbolic link, the
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   symbolic link's mode is changed rather than its target's.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  method ::  Path.lstat()
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Like :meth: `Path.stat`  but, if the path points to a symbolic link, return
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   the symbolic link's information rather than its target's.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-08-05 11:28:12 -04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  Path.mkdir(mode=0o777, parents=False, exist_ok=False)
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Create a new directory at this given path.  If *mode*  is given, it is
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   combined with the process' `` umask ``  value to determine the file mode
 
							 
						 
					
						
							
								
									
										
										
										
											2013-12-16 21:00:53 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   and access flags.  If the path already exists, :exc: `FileExistsError` 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   is raised.
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-26 21:37:12 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   If *parents*  is true, any missing parents of this path are created
 
							 
						 
					
						
							
								
									
										
										
										
											2013-12-16 20:22:37 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   as needed; they are created with the default permissions without taking
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   *mode*  into account (mimicking the POSIX `` mkdir -p ``  command).
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   If *parents*  is false (the default), a missing parent raises
 
							 
						 
					
						
							
								
									
										
										
										
											2013-12-16 21:00:53 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   :exc: `FileNotFoundError` .
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-10-15 15:12:03 -04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   If *exist_ok*  is false (the default), :exc: `FileExistsError`  is
 
							 
						 
					
						
							
								
									
										
										
										
											2014-08-05 11:28:12 -04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   raised if the target directory already exists.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   If *exist_ok*  is true, :exc: `FileExistsError`  exceptions will be
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ignored (same behavior as the POSIX `` mkdir -p ``  command), but only if the
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   last path component is not an existing non-directory file.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.5
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      The *exist_ok*  parameter was added.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  method ::  Path.open(mode='r', buffering=-1, encoding=None, errors=None, newline=None)
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Open the file pointed to by the path, like the built-in :func: `open` 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   function does::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = Path('setup.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> with p.open() as f:
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      ...     f.readline() 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      ... 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      '#!/usr/bin/env python3\n'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  method ::  Path.owner()
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-27 14:42:55 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Return the name of the user owning the file.  :exc: `KeyError`  is raised
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								   if the file's uid isn't found in the system database.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-22 14:35:51 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.13
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Raises :exc: `UnsupportedOperation`  if the :mod: `pwd`  module is not
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      available. In previous versions, :exc: `NotImplementedError`  was raised.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-10-01 19:12:33 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  Path.read_bytes()
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Return the binary contents of the pointed-to file as a bytes object::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = Path('my_binary_file')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.write_bytes(b'Binary file contents')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      20
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.read_bytes()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      b'Binary file contents'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  versionadded ::  3.5
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  method ::  Path.read_text(encoding=None, errors=None)
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Return the decoded contents of the pointed-to file as a string::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = Path('my_text_file')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.write_text('Text file contents')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      18
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.read_text()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      'Text file contents'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-08-07 01:25:03 +05:30 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   The file is opened and then closed. The optional parameters have the same
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   meaning as in :func: `open` .
 
							 
						 
					
						
							
								
									
										
										
										
											2014-10-01 19:12:33 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  versionadded ::  3.5
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-10-23 14:18:40 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  Path.readlink()
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Return the path to which the symbolic link points (as returned by
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   :func: `os.readlink` )::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = Path('mylink')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.symlink_to('setup.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.readlink()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PosixPath('setup.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  versionadded ::  3.9
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-22 14:35:51 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.13
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Raises :exc: `UnsupportedOperation`  if :func: `os.readlink`  is not
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      available. In previous versions, :exc: `NotImplementedError`  was raised.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-10-23 14:18:40 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								..  method ::  Path.rename(target)
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-09-11 21:26:49 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Rename this file or directory to the given *target* , and return a new Path
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   instance pointing to *target* .  On Unix, if *target*  exists and is a file,
 
							 
						 
					
						
							
								
									
										
										
										
											2022-05-20 15:25:39 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   it will be replaced silently if the user has permission.
 
							 
						 
					
						
							
								
									
										
										
										
											2022-05-20 15:52:38 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   On Windows, if *target*  exists, :exc: `FileExistsError`  will be raised.
 
							 
						 
					
						
							
								
									
										
										
										
											2022-05-20 15:25:39 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   *target*  can be either a string or another path object::
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = Path('foo')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.open('w').write('some text')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      9
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> target = Path('bar')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.rename(target)
 
							 
						 
					
						
							
								
									
										
										
										
											2019-09-11 21:26:49 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      PosixPath('bar')
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								      >>> target.open().read()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      'some text'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-10-03 12:52:13 +03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   The target path may be absolute or relative. Relative paths are interpreted
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   relative to the current working directory, *not*  the directory of the Path
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   object.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-10-29 01:31:37 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   It is implemented in terms of :func: `os.rename`  and gives the same guarantees.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-09-11 21:26:49 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.8
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Added return value, return the new Path instance.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  method ::  Path.replace(target)
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-09-11 21:26:49 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Rename this file or directory to the given *target* , and return a new Path
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   instance pointing to *target* .  If *target*  points to an existing file or
 
							 
						 
					
						
							
								
									
										
										
										
											2022-04-27 15:03:03 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   empty directory, it will be unconditionally replaced.
 
							 
						 
					
						
							
								
									
										
										
										
											2019-09-11 21:26:49 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-10-03 12:52:13 +03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   The target path may be absolute or relative. Relative paths are interpreted
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   relative to the current working directory, *not*  the directory of the Path
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   object.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-09-11 21:26:49 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.8
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Added return value, return the new Path instance.
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-01-28 23:40:55 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  Path.absolute()
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Make the path absolute, without normalization or resolving symlinks.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Returns a new path object::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = Path('tests')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PosixPath('tests')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.absolute()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PosixPath('/home/antoine/pathlib/tests')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-11-09 12:58:17 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  Path.resolve(strict=False)
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Make the path absolute, resolving any symlinks.  A new path object is
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   returned::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = Path()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PosixPath('.')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.resolve()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PosixPath('/home/antoine/pathlib')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-10-01 01:06:52 +03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   "`` .. `` " components are also eliminated (this is the only method to do so)::
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = Path('docs/../setup.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.resolve()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PosixPath('/home/antoine/pathlib/setup.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-11-09 12:58:17 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   If the path doesn't exist and *strict*  is `` True `` , :exc: `FileNotFoundError` 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   is raised.  If *strict*  is `` False `` , the path is resolved as far as possible
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   and any remainder is appended without checking whether it exists.  If an
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   infinite loop is encountered along the resolution path, :exc: `RuntimeError` 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   is raised.
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-24 16:14:09 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.6
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      The *strict*  parameter was added (pre-3.6 behavior is strict).
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-05-29 16:59:52 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  Path.rglob(pattern, *, case_sensitive=None, follow_symlinks=None)
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-07-20 14:47:43 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Glob the given relative *pattern*  recursively.  This is like calling
 
							 
						 
					
						
							
								
									
										
										
										
											2023-01-20 23:11:31 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   :func: `Path.glob`  with "`` **/ `` " added in front of the *pattern* , where
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   *patterns*  are the same as for :mod: `fnmatch` ::
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> sorted(Path().rglob("*.py"))
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      [PosixPath('build/lib/pathlib.py'),
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								       PosixPath('docs/conf.py'),
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								       PosixPath('pathlib.py'),
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								       PosixPath('setup.py'),
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								       PosixPath('test_pathlib.py')]
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-05-04 17:44:36 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   By default, or when the *case_sensitive*  keyword-only argument is set to
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   `` None `` , this method matches paths using platform-specific casing rules:
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   typically, case-sensitive on POSIX, and case-insensitive on Windows.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Set *case_sensitive*  to `` True ``  or `` False ``  to override this behaviour.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-05-29 16:59:52 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   By default, or when the *follow_symlinks*  keyword-only argument is set to
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   `` None `` , this method follows symlinks except when expanding "`` ** `` "
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   wildcards. Set *follow_symlinks*  to `` True ``  to always follow symlinks, or
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   `` False ``  to treat all symlinks as files.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-03-08 14:31:47 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  audit-event ::  pathlib.Path.rglob self,pattern pathlib.Path.rglob
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-05-11 07:14:25 +03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.11
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Return only directories if *pattern*  ends with a pathname components
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      separator (:data: `~os.sep`  or :data: `~os.altsep` ).
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-24 16:14:09 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.12
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      The *case_sensitive*  parameter was added.
 
							 
						 
					
						
							
								
									
										
										
										
											2023-05-04 17:44:36 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-24 16:14:09 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.13
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      The *follow_symlinks*  parameter was added.
 
							 
						 
					
						
							
								
									
										
										
										
											2023-05-29 16:59:52 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								..  method ::  Path.rmdir()
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Remove this directory.  The directory must be empty.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-05-13 10:50:15 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  Path.samefile(other_path)
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Return whether this path points to the same file as *other_path* , which
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   can be either a Path object, or a string.  The semantics are similar
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   to :func: `os.path.samefile`  and :func: `os.path.samestat` .
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   An :exc: `OSError`  can be raised if either file cannot be accessed for some
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   reason.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-04-13 16:17:59 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-05-13 10:50:15 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      >>> p = Path('spam')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> q = Path('eggs')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.samefile(q)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      False
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.samefile('spam')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      True
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  versionadded ::  3.5
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								..  method ::  Path.symlink_to(target, target_is_directory=False)
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Make this path a symbolic link to *target* .  Under Windows,
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-26 21:37:12 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   *target_is_directory*  must be true (default `` False `` ) if the link's target
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								   is a directory.  Under POSIX, *target_is_directory* 's value is ignored.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-04-13 16:17:59 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								      >>> p = Path('mylink')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.symlink_to('setup.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.resolve()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      PosixPath('/home/antoine/pathlib/setup.py')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.stat().st_size
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      956
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.lstat().st_size
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      8
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  note :: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      The order of arguments (link, target) is the reverse
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      of :func: `os.symlink` 's.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-22 14:35:51 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.13
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Raises :exc: `UnsupportedOperation`  if :func: `os.symlink`  is not
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      available. In previous versions, :exc: `NotImplementedError`  was raised.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-04-23 21:48:52 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  Path.hardlink_to(target)
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Make this path a hard link to the same file as *target* .
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  note :: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      The order of arguments (link, target) is the reverse
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      of :func: `os.link` 's.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  versionadded ::  3.10
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-22 14:35:51 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.13
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      Raises :exc: `UnsupportedOperation`  if :func: `os.link`  is not
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      available. In previous versions, :exc: `NotImplementedError`  was raised.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-04-07 16:56:32 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-08-09 17:10:39 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  Path.touch(mode=0o666, exist_ok=True)
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Create a file at this given path.  If *mode*  is given, it is combined
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   with the process' `` umask ``  value to determine the file mode and access
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   flags.  If the file already exists, the function succeeds if *exist_ok* 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   is true (and its modification time is updated to the current time),
 
							 
						 
					
						
							
								
									
										
										
										
											2013-12-16 21:00:53 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   otherwise :exc: `FileExistsError`  is raised.
 
							 
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-05-16 00:02:11 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  Path.unlink(missing_ok=False)
  
						 
					
						
							
								
									
										
										
										
											2013-11-22 17:38:12 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Remove this file or symbolic link.  If the path points to a directory,
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   use :func: `Path.rmdir`  instead.
 
							 
						 
					
						
							
								
									
										
										
										
											2014-10-01 19:12:33 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-05-16 00:02:11 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   If *missing_ok*  is false (the default), :exc: `FileNotFoundError`  is
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   raised if the path does not exist.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   If *missing_ok*  is true, :exc: `FileNotFoundError`  exceptions will be
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ignored (same behavior as the POSIX `` rm -f ``  command).
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.8
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      The *missing_ok*  parameter was added.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-10-01 19:12:33 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  method ::  Path.write_bytes(data)
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Open the file pointed to in bytes mode, write *data*  to it, and close the
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   file::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = Path('my_binary_file')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.write_bytes(b'Binary file contents')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      20
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.read_bytes()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      b'Binary file contents'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   An existing file of the same name is overwritten.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   ..  versionadded ::  3.5
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-10-21 05:08:19 +03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  method ::  Path.write_text(data, encoding=None, errors=None, newline=None)
  
						 
					
						
							
								
									
										
										
										
											2014-10-01 19:12:33 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   Open the file pointed to in text mode, write *data*  to it, and close the
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   file::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p = Path('my_text_file')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.write_text('Text file contents')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      18
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      >>> p.read_text()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      'Text file contents'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-09-11 18:08:10 +03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   An existing file of the same name is overwritten. The optional parameters
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   have the same meaning as in :func: `open` .
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-10-01 19:12:33 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionadded ::  3.5
  
						 
					
						
							
								
									
										
										
										
											2017-06-02 11:36:02 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-10-21 05:08:19 +03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   ..  versionchanged ::  3.10
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      The *newline*  parameter was added.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-06-02 11:36:02 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								Correspondence to tools in the :mod: `os`  module
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								-----------------------------------------------
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Below is a table mapping various :mod: `os`  functions to their corresponding
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:class: `PurePath` /:class: `Path`  equivalent.
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  note :: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-01-20 02:20:00 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   Not all pairs of functions/methods below are equivalent. Some of them,
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   despite having some overlapping use-cases, have different semantics. They
 
							 
						 
					
						
							
								
									
										
										
										
											2022-01-28 23:40:55 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   include :func: `os.path.abspath`  and :meth: `Path.absolute` ,
 
							 
						 
					
						
							
								
									
										
										
										
											2021-01-20 02:20:00 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   :func: `os.path.relpath`  and :meth: `PurePath.relative_to` .
 
							 
						 
					
						
							
								
									
										
										
										
											2017-06-02 11:36:02 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-10-05 20:54:11 +05:30 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								====================================   ==============================
 
							 
						 
					
						
							
								
									
										
										
										
											2021-01-20 02:20:00 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								:mod: `os`  and :mod: `os.path`            :mod: `pathlib` 
  
						 
					
						
							
								
									
										
										
										
											2018-10-05 20:54:11 +05:30 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								====================================   ==============================
 
							 
						 
					
						
							
								
									
										
										
										
											2022-01-28 23:40:55 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								:func: `os.path.abspath`                 :meth: `Path.absolute`  [#]_ 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:func: `os.path.realpath`                :meth: `Path.resolve` 
  
						 
					
						
							
								
									
										
										
										
											2018-10-05 20:54:11 +05:30 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								:func: `os.chmod`                        :meth: `Path.chmod` 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:func: `os.mkdir`                        :meth: `Path.mkdir` 
  
						 
					
						
							
								
									
										
										
										
											2020-05-04 16:47:03 -03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								:func: `os.makedirs`                     :meth: `Path.mkdir` 
  
						 
					
						
							
								
									
										
										
										
											2018-10-05 20:54:11 +05:30 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								:func: `os.rename`                       :meth: `Path.rename` 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:func: `os.replace`                      :meth: `Path.replace` 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:func: `os.rmdir`                        :meth: `Path.rmdir` 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:func: `os.remove` , :func: `os.unlink`    :meth: `Path.unlink` 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:func: `os.getcwd`                       :func: `Path.cwd` 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:func: `os.path.exists`                  :meth: `Path.exists` 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:func: `os.path.expanduser`              :meth: `Path.expanduser`  and
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								                                       :meth: `Path.home` 
 
							 
						 
					
						
							
								
									
										
										
										
											2020-08-14 01:22:04 +05:30 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								:func: `os.listdir`                      :meth: `Path.iterdir` 
  
						 
					
						
							
								
									
										
										
										
											2022-07-23 03:55:46 +04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								:func: `os.walk`                         :meth: `Path.walk` 
  
						 
					
						
							
								
									
										
										
										
											2018-10-05 20:54:11 +05:30 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								:func: `os.path.isdir`                   :meth: `Path.is_dir` 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:func: `os.path.isfile`                  :meth: `Path.is_file` 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:func: `os.path.islink`                  :meth: `Path.is_symlink` 
  
						 
					
						
							
								
									
										
										
										
											2021-04-23 21:48:52 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								:func: `os.link`                         :meth: `Path.hardlink_to` 
  
						 
					
						
							
								
									
										
										
										
											2020-08-14 01:22:04 +05:30 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								:func: `os.symlink`                      :meth: `Path.symlink_to` 
  
						 
					
						
							
								
									
										
										
										
											2019-10-23 14:18:40 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								:func: `os.readlink`                     :meth: `Path.readlink` 
  
						 
					
						
							
								
									
										
										
										
											2022-06-07 19:54:16 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								:func: `os.path.relpath`                 :meth: `PurePath.relative_to`  [#]_ 
  
						 
					
						
							
								
									
										
										
										
											2018-10-05 20:54:11 +05:30 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								:func: `os.stat`                         :meth: `Path.stat` ,
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								                                       :meth: `Path.owner` ,
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								                                       :meth: `Path.group` 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:func: `os.path.isabs`                   :meth: `PurePath.is_absolute` 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:func: `os.path.join`                    :func: `PurePath.joinpath` 
  
						 
					
						
							
								
									
										
										
										
											2023-01-20 22:13:58 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								:func: `os.path.basename`                :attr: `PurePath.name` 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:func: `os.path.dirname`                 :attr: `PurePath.parent` 
  
						 
					
						
							
								
									
										
										
										
											2018-10-05 20:54:11 +05:30 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								:func: `os.path.samefile`                :meth: `Path.samefile` 
  
						 
					
						
							
								
									
										
										
										
											2023-01-20 22:13:58 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								:func: `os.path.splitext`                :attr: `PurePath.stem`  and
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								                                       :attr: `PurePath.suffix` 
 
							 
						 
					
						
							
								
									
										
										
										
											2018-10-05 20:54:11 +05:30 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								====================================   ==============================
 
							 
						 
					
						
							
								
									
										
										
										
											2021-01-20 02:20:00 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  rubric ::  Footnotes
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-01-28 23:40:55 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  [#]  :func: `os.path.abspath`  normalizes the resulting path, which may change its meaning in the presence of symlinks, while :meth: `Path.absolute`  does not.
  
						 
					
						
							
								
									
										
										
										
											2022-06-07 19:54:16 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  [#]  :meth: `PurePath.relative_to`  requires `` self ``  to be the subpath of the argument, but :func: `os.path.relpath`  does not.