I'm following this tutorial to upload files to onedrive but the files is empty just upload the name of the file
http://developer.nokia.com/community/wiki/SkyDrive_-_How_to_upload_content_on_Windows_Phone
using (IsolatedStorageFile store = IsolatedStorageFile.GetUserStoreForApplication()) { using (var fileStream = store.OpenFile(strSaveName, FileMode.Open, FileAccess.Read, FileShare.Read)) { try { LiveOperationResult res = await client.BackgroundUploadAsync("me/skydrive", new Uri("/shared/transfers/"+fileName, UriKind.Relative), OverwriteOption.Overwrite ); } catch (Exception ex) { } } }