Friday, July 11, 2014

download file from sharepoint site to physical location

          
           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