chris1610 / pbpython

Code, Notebooks and Examples from Practical Business Python
https://pbpython.com
BSD 3-Clause "New" or "Revised" License
1.99k stars 987 forks source link

Unable to show full path as string #23

Open Grumpythedwarff opened 4 years ago

Grumpythedwarff commented 4 years ago

We have the method Path.name() to show the filename associated with a path, but there doesn't appear to a way to show the full file path without wrapping in a str() function, which is a little ugly.

Could something like Path.fullname() be included as a method?

chris1610 commented 4 years ago

Pathlib is a python library function so I can't change it.

I did do some research on your question and apparently there is quite a bit of discussion about the best approach to resolve. This SO question is good.

I also recommend looking through this discussion on the developer's docs.

It seems like the recommended approach is to use Path.resolve() which may or may not be what you need.