I am trying to create a subfolder using the Live Connect API for Windows Phone 7.
I have successfully created a folder, but would also like to create a subfolder. I looked here: http://msdn.microsoft.com/en-us/library/live/hh826550.aspx , but I could not find a way to create a subfolder.
Is there any way to do this?
instead of calling client.PostAsync("me/skydrive", folderData);
client.PostAsync("me/skydrive", folderData);
call something like this: client.PostAsync(folderId, folderData);
client.PostAsync(folderId, folderData);
You can get the folder ID by calling the list of files / directories on skydrive.
Hope this helps