Skip to main content

Filesystem: pathlib & shutil

pathlib - Modern Path Handling

0:00
LearnStep 1/4

Introduction to pathlib

pathlib: The Modern Way

pathlib provides an object-oriented approach to filesystem paths. It's cleaner and more Pythonic than os.path.

Creating Path Objects

python

Building Paths with /

python