Search code examples
asp.netsharepointsharepoint-2007windows-sharepoint-services

Download profile pictures from My sites into local folder?


I am working on download profile picture from my sites into local drive. I don't understand how to approach that concept. Please some one give an idea or code steps. That will be helpful.


Solution

  • It's just a web site...

    How about:

    using (WebClient client = new WebClient())
    {
        client.DownloadFile(url, filePath);
    }
    

    Courtesy of StackOverflow