flowjs / flow.js

A JavaScript library providing multiple simultaneous, stable, fault-tolerant and resumable/restartable file uploads via the HTML5 File API.
Other
2.96k stars 346 forks source link

Directory upload, each file to unique URL #308

Open sushantmagoo opened 4 years ago

sushantmagoo commented 4 years ago

Hi, I am trying to upload multiple files with custom target URL for each file using directory upload in AngularJS.

Use case: User clicks UPLOAD button, selects directory having n files. A request is sent to the server with file names. Server returns n AWS S3 pre-signed URLs as {fileName: URL }. Each file will be uploaded directly to S3 using the corresponding URL from the client.

Have not found a similar result on the internet.