We can down load the file from sharepoint site using following code:
string Sitepath = "http://localhost/sites/Axalta/Documents/Employee.docx";
string LocalFolderPath = @"C:\DownLoads\Employee.docx";
WebClient OwebClient = new WebClient();
OwebClient.Credentials = CredentialCache.DefaultNetworkCredentials;
OwebClient.DownloadFile(Sitepath , LocalFolderPath);
No comments:
Post a Comment