Click here to Skip to main content
Sign Up to vote bad
good
See more: ASP.NETJavascript
hi..
 

I have to upload files from asp.net site to skydrive.
 
my site will register to skydrive and internally we allow ours users to store their files to skydrive there should be only one account. but we need to differentiate them based on their company name and create different folders to insert files.does this work out....i am searching for this concept from long back. help me in this aspect....
 
Thanks in Advance...
Posted 9-Jan-13 23:10pm
074051.1K
Edited 11-Jan-13 21:37pm


1 solution

LiveConnectClient client = new LiveConnectClient(session);
        var fileData = new Dictionary<string, object>();
        fileData.Add("name", "new_file.txt");
        try
        {
            LiveOperationResult fileOperationResult = await client.PutAsync("me/skydrive", fileData);
            this.infoTextBlock.Text = fileOperationResult.ToString();
        }
        catch (LiveConnectException exception)
        {
            this.infoTextBlock.Text = exception.Message;
        }
 
http://stackoverflow.com/questions/12891379/skydrive-file-upload-via-net-2-0[^]
  Permalink  
Comments
07405 - 10-Jan-13 6:01am
does it needs any reference to be added? how can i login toupload files?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 6,959
1 Prasad_Kulkarni 3,671
2 OriginalGriff 3,359
3 _Amy 3,332
4 CPallini 2,925


Advertise | Privacy | Mobile
Web01 | 2.6.130617.1 | Last Updated 12 Jan 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid