Re: Web app large uploads and downloads

2024-01-02 Thread Greg Keogh via ozdotnet
I think it's been using azcopy for a fair while now. Azcopy has improved dramatically over the last few years to have more switches and options. I recently used it to bulk copy a container in one storage account to another, then bulk upload all files with certain extensions (which wasn't originally

Re: Web app large uploads and downloads

2024-01-02 Thread mike smith via ozdotnet
It's not a direct answer, but I'd feel happier uploading to OneDrive and passing the server a link to that. Mike On Sat, 30 Dec 2023, 08:29 Greg Keogh via ozdotnet, wrote: > Folks (anyone working?) > > I've been asked to add a feature to a Blazor Webassembly app to allow > uploads and downloads

RE: Web app large uploads and downloads

2024-01-02 Thread Dr Greg Low via ozdotnet
I notice that the Azure Storage Explorer desktop app nowadays defaults to using azcopy under the covers to copy files. That’s a much better option for files of any size. Probably need a component that does that but azcopy has a few dependencies. It’s on GitHub as open source so you could probab

Re: Web app large uploads and downloads

2024-01-02 Thread DotNet Dude via ozdotnet
Yep we usually do this sort of thing with a batch process, particularly if there are large files. I don’t see any web app being used just to upload a bunch of files. For fun try asking ChatGPT or one of the others to see where they go. On Wed, 3 Jan 2024 at 11:13, Greg Keogh via ozdotnet wrote:

Re: Web app large uploads and downloads

2024-01-02 Thread Greg Keogh via ozdotnet
Folks (welcome to the distant future of 2024) I'm pretty sure that there is no sensible way to provide a bulk Azure Blob upload facility in a web hosted app (Wasm, JS or whatever). There could be thousands of files with a total size up to hundreds of MB. Managers are currently using a WPF program