I am using Amazon library to upload single file to server. I am using this code to upload single image, but now i want to upload and pass multiple files in UploadService service.
I checked inside UploadService class and inside this service class, they are using following code to start upload.
uploader = new Uploader(this, s3Client, s3BucketName, s3ObjectKey, fileToUpload);
Here fileToUpload = file path of single image.
Did anybody use this same service and uploaded multiple files? Help would be appreciated.
Thanks in advance.