Is there any way to download all the libraries documents not one by one, but all at once?
Hello, we have thousands of documents in multiple libraries. How do I download them all? Thank you.
Hi,
Please have a look at th following documentation article on how to
Download documents programatically
http://docs.sitefinity.com/for-developers-download-documents-programatically
You could for example alter it with
var documents = librariesManager.GetDocuments();foreach (var doc in documents) this.DownloadDocument(doc.Id, "~/App_Data/MyDocuments");