UWP: Upload large files to OneDrive using OneDrive SDK
问题 I can upload "small" files (< 100 MB) using the following code: await OneDriveClient .Drive .Special .AppRoot .Children["filename"] .Content .Request() .PutAsync<Item>(contentStream); For Large files (> 100 MB) I read that you have to create an Upload Session . Something like this? UploadSession uSession = await OneDriveClient .Drive .Special .AppRoot .Children["filename"] .CreateSession(VarChunkedUploadSessionDescriptor) .Request() .PostAsync(); I am not sure what steps are after this? (Or