diff --git a/README.md b/README.md index e304ded..a4628b8 100644 --- a/README.md +++ b/README.md @@ -977,18 +977,20 @@ pwd = Path() ``` ```python - = .glob('') # Returns all matches. - = .open() # Opens file. - = .resolve() # Makes path absolute. + = .glob('') # Returns all matches. ``` ```python + = .resolve() # Makes path absolute. = str() # Returns path as string. + = .parts # Returns all components as strings. +``` + +```python = .name # Final component. = .stem # Final component without extension. = .suffix # Final component's extension. = .parent # Path without final component. - = .parts # All components as strings. ```