python
from pathlib import Path
python
path = Path()
python
path.exists()
python
path.is_file()
python
path.is_dir()
python
path.parent
python
path.name
python
path.suffix
python
path.resolve()
python
path.copy_to(destination)
python
path.unlink()
python
for item in path.iterdir():
if item.is_file():
elif item.is_dir():