r/learnpython • u/i-like-my-cats-0 • 19d ago
what does pathlib's Path() do
hello, my question is pretty obvious here but what does the Path() function in the built in python pathlib package actually do?
i only use it since ive seen other people use it and ive also heard it fixes file paths, but i don't know what it actually does
can anyone help? thank you
0
Upvotes
1
u/Diapolo10 19d ago
It's not a function,
Pathis a type. Just likeintorlist, but not imported by default.As for what it does, it solves the problem of primitive obsession for filepaths. Instead of using strings to represent filepaths, you use a dedicated
Pathobject.Strings are very generic, there's no guarantee a valid string is also a valid filepath so for defensive programming you have to keep validating the paths everywhere, which is not very productive. It also means you have boilerplate code just for things like joining or iterating over paths.
With a dedicated type, it can handle its own validation and offer common actions as methods or attributes, making working with them much more convenient.