Konrad Mieszała
Konrad Mieszała

Reputation: 61

MINIO: GetVersions of the object

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

Upvotes: 0

Views: 2170

Answers (1)

Prakash S
Prakash S

Reputation: 2053

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

Upvotes: 2

Related Questions