v0.8.3
- add missing stat() methods to DBFSPath and WorkspacePath (#144). The
stat()
method has been added to bothDBFSPath
andWorkspacePath
classes, addressing issues #142 and #143. This method, which adheres to the Posix standard, returns file status in theos.stat_result
format, providing access to various metadata attributes such as file size, last modification time, and creation time. By incorporating this method, developers can now obtain essential file information for Databricks File System (DBFS) and Databricks Workspace paths when working with these classes. The change includes a new test case forstat()
in thetest_paths.py
file to ensure the correctness of the method for both classes.
Contributors: @ericvergnaud