Minio上传数据之上传文件夹(保留文件夹结构)

(python)关键代码如下:

object_name = os.path.relpath(file_path, ".")
object_name = object_name.replace("\\", "/")
minioClient.fput_object(bucket_name, object_name, file_path)

通过 minioClient.fput_object(bucket_name, object_name, file_path)

bucket_name:存储桶 ,放数据的地方

object_name:在存储桶中的名字

file_path:本地数据位置

通过fput_object上传时:

如果object_name为image\image.jpg,则上传后的名字就是image\image.jpg;

如果object_name为image/image.jpg,则上传后image为文件夹,文件名为image.jpg;

猜你喜欢

转载自blog.csdn.net/tiaoteek/article/details/139020827