Problem Statement
When I pass in a pathlib.Path to DBUtils functions they fail, despite pathlib being the default way to do paths in Python. E.g., dbutils.fs.ls(Path("my/cool/folder"))
Proposed Solution
Support Path objects as input to dbutils functions, could be done by just casting to string.
Additional Context
I don't know if the actual dbutils code is maintained here, but you at least have the Workspace Client implementation so figured you guys would know.
Problem Statement
When I pass in a
pathlib.PathtoDBUtilsfunctions they fail, despite pathlib being the default way to do paths in Python. E.g.,dbutils.fs.ls(Path("my/cool/folder"))Proposed Solution
Support
Pathobjects as input todbutilsfunctions, could be done by just casting to string.Additional Context
I don't know if the actual dbutils code is maintained here, but you at least have the Workspace Client implementation so figured you guys would know.