You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 13, 2026. It is now read-only.
We are using pyfilesystem to abstract the calls to files stored in cloud storage. Pyfilesystem has an api called opendir which works with S3, google file system, local filesystem, NAS. It fails in case of minio.
This is due to fact that minio fails to return directories with files which is supported by S3 API. Minio is not compatible with S3 as it does not return response in this case similar to S3. If we change the code it will become very specific to minio. So I believe it will be nice if this behaviour works like S3, as minio claims to be S3 compatible but in this case it isn’t.
There is a ticket in pyfilesystem project which was closed because it follows S3, but minio is an exception.
Expected Behavior
Minio returns directories with files as S3, to be S3 compatible.
Current Behavior
Minio does not return directories with files, it is a behaviour not compatible with S3.