Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在IOneDriveClient( OneDriveClientExtensions.GetUniversalClient(scopes)) 中创建?不是休息!
IOneDriveClient
OneDriveClientExtensions.GetUniversalClient(scopes)
以下是创建文件夹的方法:
var folderToCreate = new Item { Name = folderName, Folder = new Folder() }; var newFolder = await client.Drive.Items[parentId].Children.Request().AddAsync(folderToCreate);
https://github.com/OneDrive/onedrive-sdk-csharp/issues/24