minio-dart
minio-dart copied to clipboard
Support for folder upload?
The code can upload file, but is there any way to upload folders?
Maybe i can zip the dir and upload the zip file.
Directories are hard to upload for any language/app. Usually you need to create the new dir on the target system, iterate the current local dir and upload each file one at a time to the target system. Or you can zip -> upload -> unzip
S3 not support upload foldres, pls impl it yourself
Directories are hard to upload for any language/app. Usually you need to create the new dir on the target system, iterate the current local dir and upload each file one at a time to the target system. Or you can zip -> upload -> unzip
Good answer