Size: 3072
Comment:
|
Size: 3154
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 407: | Line 407: |
[[https://pymotw.com/3/pathlib/|Python Module of the Day article for pathlib]] |
Python Pathlib
Contents
-
Python Pathlib
-
Usage
-
Path
- 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
- Home
-
Path
- See also
-
Usage
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
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, 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
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
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