You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
My required flow is to create a folder, upload a file and share the folder to some users using onedrive. According to my research, I can create a folder, upload a file but I can't find how to share the folder
(1) Create folder
var folderToCreate = new Item { Name = folderName, Folder = new Folder() };
var newFolder = await client.Drive.Items[parentId].Children.Request().AddAsync(folderToCreate);
(2) Upload a file
upload files successfully via
item = await oneDriveClient.Drive.Root.ItemWithPath(itemPath).Content.Request().PutAsync<Item>(memStream);
(3) Share to some user
???
Is it possible using this SDK/Api or Should I use Sharepoint for that?
Thank you
The text was updated successfully, but these errors were encountered:
Hi.
My required flow is to create a folder, upload a file and share the folder to some users using onedrive. According to my research, I can create a folder, upload a file but I can't find how to share the folder
(1) Create folder
(2) Upload a file
(3) Share to some user
Is it possible using this SDK/Api or Should I use Sharepoint for that?
Thank you
The text was updated successfully, but these errors were encountered: