0

I'm a beginner in MinIO and I want to know Is there any way to get all versions of object? I ony have the name of the object, and I want to know what version it has? Please help

EDIT: I use minio-dotnet-master

1 Answers1

1

Using Minio Client : mc client

mc ls --versions s3/mybucket/object

Most minio sdks support retrieving versions.

e.g list_objects in mino-py with include_version = True

Prakash S
  • 1,695
  • 3
  • 11
  • 20