UWP中的OneDrive

时间:2016-11-27 18:35:48

标签: c# uwp onedrive

我正在尝试将文件加载到OneDrive

using (Stream contentStream = await file.OpenStreamForReadAsync())
{
      var uploadedItem = await _client.Drive.Root.ItemWithPath("Orange Reminder/" + file.Name).Content.Request().PutAsync<Item>(contentStream);                                                
}

我有错误:URI无效:无法确定URI的格式。 怎么了?

0 个答案:

没有答案