I have successfully uploaded my files to s3, but now I want to track the progress of each file being loaded.
bucket.upload(params, function(err, data){
console.log("File Uploaded Successfully");
}).on('httpUploadProgress', function(progress){
console.log(progress.loaded / progress.total * 100);}
The issue with the current code is that the progress data returned does not specify which file it is for.
Is there a way to determine if the returned progress is associated with a specific file?