WebDavClient
WebDavClient copied to clipboard
[Question] Is there a way to upload/download multiples files at once?
Hi @vincent-duret, There's no support in the library for uploading/downloading multiple files.
As far as I understand, it's not a part of the WebDAV specification and I don't know how many WebDAV servers even support this.
Could you explain me your use case, please? Does multiple calls to PutFile/GetFile can solve your problem or you specifically need to send them as a part of a single HTTP request?
Hi @skazantsev,
Thank you for your feedback. I am trying to outsource the storage of the files from the db to a webdav endpoint for a web application. However this application also provides a bulk import/export module. Inside this module I was wondering the best way to download/upload the files from/to the webdav endpoint. Of course, doing multiple calls still remain a possibility but I am a bit concerned about performance.