Python Pathlib
Contents
-
Python Pathlib
-
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
- See also
-
Path
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
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
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