Differences between revisions 1 and 7 (spanning 6 versions)
Revision 1 as of 2023-03-01 14:38:24
Size: 1604
Comment:
Revision 7 as of 2023-06-15 18:38:20
Size: 3154
Comment:
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
== Path == == Usage ==



=
== Path ===
Line 18: Line 22:

=== Absolute ===

=== Anchor ===

=== As_Posix ===

=== As_Uri ===

=== ChMod ===

=== Drive ===

=== Exists ===

=== ExpandUser ===

=== Glob ===

=== Group ===

=== HardLink_To ===

=== Is_Absolute ===

=== Is_Block_Device ===

=== Is_Char_Device ===

=== Is_Dir ===

=== Is_Fifo ===

=== Is_File ===

=== Is_Mount ===

=== Is_Relative_To ===

=== Is_Reserved ===

=== Is_Socket ===

=== Is_SymLink ===

=== IterDir ===

=== JoinPath ===

=== Match ===

=== MkDir ===

===
Name ===

=== Open ===

=== Owner ===

=== Parent ===

=== Parents ===

=== Parts ===

=== Read_Bytes ===

=== Read_Text ===

=== ReadLink ===

=== Relative_To ===

=== Rename ===

=== Replace ===

=== Resolve ===

=== RGlob ===

=== RmDir ===

=== Root ===

=== SameFile ===

=== Stat ===

=== Stem ===

=== Suffix ===

=== Suffixes ===

=== SymLink_To ===

=== Touch ===

=== Unlink ===

=== With_Name ===

=== With_Stem ===

=== With_Suffix ===

=== Write_Bytes ===

=== Write_Text ===

----



== Cwd ==
----



=
=== Absolute ====

----



=
=== Anchor ====

----



=
=== As_Posix ====

----



=
=== As_Uri ====

----



=
=== ChMod ====

----



=
=== Drive ====

----



=
=== Exists ====

----



=
=== ExpandUser ====

----



=
=== Glob ====

----



=
=== Group ====

----



=
=== HardLink_To ====

----



=
=== Is_Absolute ====

----



=
=== Is_Block_Device ====

----



=
=== Is_Char_Device ====

----



=
=== Is_Dir ====

----



=
=== Is_Fifo ====

----



=
=== Is_File ====

----



=
=== Is_Mount ====

----



=
=== Is_Relative_To ====

----



=
=== Is_Reserved ====

----



=
=== Is_Socket ====

----



=
=== Is_SymLink ====

----



=
=== IterDir ====

----



=
=== JoinPath ====

Takes one or more strings or `Path` objects.

{{{
from pathlib import Path
p = Path('.')

t = p.joinpath('temp')
}}}

----



=
=== Match ====

----



=
=== MkDir ====

{{{
from pathlib import Path
p = Path('.')

t = p.joinpath('temp')
t.mkdir(parents=False, exist_ok=True)
}}}

If a parent directory does not exist, `File
NotFoundError` is raised. If the `parents` option is set to `True` though, the missing parents are recursively `mkdir`ed instead.

If the directory already exists, `FileExistsError` is raised. If the `exist_ok` option is set to `True` though, this error is suppressed. If a file already exists at the named location, `FileExistsError` is raised regardless of the `exist_ok` option.

----



==== Name ====

----



=
=== Open ====

----



=
=== Owner ====

----



=
=== Parent ====

----



=
=== Parents ====

----



=
=== Parts ====

----



=
=== Read_Bytes ====

----



=
=== Read_Text ====

----



=
=== ReadLink ====

----



=
=== Relative_To ====

----



=
=== Rename ====

----



=
=== Replace ====

----



=
=== Resolve ====

----



=
=== RGlob ====

----



=
=== RmDir ====

----



=
=== Root ====

----



=
=== SameFile ====

----



=
=== Stat ====

----



=
=== Stem ====

----



=
=== Suffix ====

----



=
=== Suffixes ====

----



=
=== SymLink_To ====

----



=
=== Touch ====

----



=
=== Unlink ====

----



=
=== With_Name ====

----



=
=== With_Stem ====

----



=
=== With_Suffix ====

----



=
=== Write_Bytes ====

----



=
=== Write_Text ====

----



=
== Cwd ===
Line 146: Line 390:
== Home == === Home ===
Line 163: Line 407:
[[https://pymotw.com/3/pathlib/|Python Module of the Day article for pathlib]]

Python Pathlib


Usage

Path

The Path class is instantiated like:

from pathlib import Path
p = Path('.')


Absolute


Anchor


As_Posix


As_Uri


ChMod


Drive


Exists


ExpandUser


Glob


Group



Is_Absolute


Is_Block_Device


Is_Char_Device


Is_Dir


Is_Fifo


Is_File


Is_Mount


Is_Relative_To


Is_Reserved


Is_Socket



IterDir


JoinPath

Takes one or more strings or Path objects.

from pathlib import Path
p = Path('.')

t = p.joinpath('temp')


Match


MkDir

from pathlib import Path
p = Path('.')

t = p.joinpath('temp')
t.mkdir(parents=False, exist_ok=True)

If a parent directory does not exist, FileNotFoundError is raised. If the parents option is set to True though, the missing parents are recursively mkdired instead.

If the directory already exists, FileExistsError is raised. If the exist_ok option is set to True though, this error is suppressed. If a file already exists at the named location, FileExistsError is raised regardless of the exist_ok option.


Name


Open


Owner


Parent


Parents


Parts


Read_Bytes


Read_Text



Relative_To


Rename


Replace


Resolve


RGlob


RmDir


Root


SameFile


Stat


Stem


Suffix


Suffixes



Touch



With_Name


With_Stem


With_Suffix


Write_Bytes


Write_Text


Cwd

A Path class method.

from pathlib import Path
c = Path.cwd()


Home

A Path class method.

from pathlib import Path
h = Path.home()


See also

Python pathlib module documentation

Python Module of the Day article for pathlib


CategoryRicottone

Python/PathLib (last edited 2023-10-11 19:40:58 by DominicRicottone)