I have the URL to a shared FileCloud in my database. I want to change it with content of a shared file.
How can I read the content from the URL?
I used this code to try but it doesn't read the content of the file
using (var client = new WebClient())
{
client.DownloadFile(new System.Uri("https://filecloud.company.de/ui/core/index.html?mode=single&path=/SHARED/test/test.txt"), @"C:\MyProjects\test.txt");
}