Showing posts with label C# sharepoint file downlaod. Show all posts
Showing posts with label C# sharepoint file downlaod. Show all posts

Thursday, June 16, 2011

Download File from URL, Download Document from SharePoint library using c#


public void DownloadFileFromSite(string siteURL, string saveName  )
{
    try
    {
        System.Net.WebClient _WebClient = new System.Net.WebClient();
        // Downloads the resource with the specified URI to a local file.
        _WebClient.DownloadFile(siteURL, saveName);
}
    catch (Exception _Exception)
    {
        // Error
       MessageBox.Show("Error In Downloading");
    }
}

Featured Posts

Kali Linux Remote Desktop: Access GNOME from Windows Using Native RDP

  Kali Linux + GNOME 50 + GNOME Remote Desktop + Windows Remote Desktop (MSTSC) Getting a full GNOME desktop remotely on Kali Linux can be ...