You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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.
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?
The text was updated successfully, but these errors were encountered: