using objects = s3Client.list_objects("sample", "samplefolder/sample1")
i managed to get into the folder, but i want to print/download the files in the folders that is sorted out with timestamp subfolders.
any idea on how to solve this ?
using objects = s3Client.list_objects("sample", "samplefolder/sample1")
i managed to get into the folder, but i want to print/download the files in the folders that is sorted out with timestamp subfolders.
any idea on how to solve this ?
Setting the recursive
parameter will do the trick – returns a flat list of paths.
objects = client.list_objects(minio_bucket, folder_name, recursive=True)