Live Connect API - Create Sub-Folders
onedrive, windows-phone-7
Solution
instead of calling ` client.PostAsync("me/skydrive", folderData); `
call something like this: ` client.PostAsync(folderId, folderData); `
You can obtain folder ID by calling list files/directories on skydrive.
Hope it helps
Problem
I'm trying to create a sub folder using the Live Connect API for the Windows Phone 7. I have successfully created a folder, but I would like to create a sub folder as well. I have been looking here: http://msdn.microsoft.com/en-us/library/live/hh826550.aspx but I have not been able to find a way to create a sub folder. Is there a way to do it?