Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#2059] feat(client-python): Support Gravitino Virtual FileSystem in Python #3528

Merged
merged 21 commits into from
Jun 18, 2024
Prev Previous commit
Next Next commit
fix
  • Loading branch information
xiaojiebao committed Jun 12, 2024
commit 9f85276883c6d1f56068eb80eab3723b38e6b7e5
2 changes: 2 additions & 0 deletions clients/client-python/gravitino/filesystem/gvfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,8 @@ def rm_file(self, path):

def rmdir(self, path):
"""Remove a directory.
It will delete a directory and all its contents recursively for PyArrow.HadoopFileSystem.
And it will throw an exception if delete a directory which is non-empty for LocalFileSystem.
:param path: Virtual fileset path
"""
context: FilesetContext = self._get_fileset_context(path)
Expand Down
Loading