-
Notifications
You must be signed in to change notification settings - Fork 0
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
Implement ls API #7
Conversation
self.version_aware = version_aware | ||
super().__init__(**kwargs) | ||
|
||
def ls(self, path, detail=False, refresh=False, versions=False, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The versioned list has not been tested currently. It needs to wait until the r/w operation of the file is available. A TODO issue #11 has been recorded
"Key": bucket.name, | ||
"Size": 0, | ||
"StorageClass": "BUCKET", | ||
"size": 0, | ||
"type": "directory", | ||
"name": bucket.name, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All the returned object schemas are currently aligned with s3fs as much as possible.
Summary 📝
Implement ls API
Details
Describe more what you did on changes.
Bugfixes 🐛 (delete if dind't have any)
Checks