pathlib — Object-oriented filesystem paths — Python …
26.04.2022 · Source code: Lib/pathlib.py This module offers classes representing filesystem paths with semantics appropriate for different operating systems. Path classes are divided between pure paths, which provide purely computational …
getting a full path string from a pathlib.PurePath object
python-forum.io › thread-9077Mar-20-2018, 05:15 AM is the proper way to get the plain string path of a pathlib.PurePath object or pathlib.Path object to pass it to str () and use what that returns? that is all i can find. the documentation (i have the 3.5.2 PDF) only describes the .name attribute for part of the path. i suppose i could join the .parts value in some way. 1 2 3