From 03ce3f1323f04860439c6fb0c33afc7815501465 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 18 Mar 2019 19:34:06 +0100 Subject: [PATCH] Pathlib --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0ebe358..09fa826 100644 --- a/README.md +++ b/README.md @@ -1135,11 +1135,14 @@ cwd = Path() = .is_file() = .is_dir() = .iterdir() +``` + +```python = .glob('') ``` ```python - = str() # Returns path as string. + = str() # Returns path as a string. = .parts # Returns all components as strings. = .resolve() # Returns absolute path without symlinks. ```