1
我工作的這些要求C#項目:如何指定@ microsoft.graph.conflictBehavior請求體中onedriveAPI
- 創建一個文件夾,如果它不退出
- 檢查已存在,如果存在則遞增文件名。
從Onedrive API文檔Create a new Folder in OneDrive,它說,設置@ microsoft.graph.conflictBehavior =重命名,如果它存在
我怎麼可以添加@ microsoft.graph.conflictBehavior到我的要求會增加文件夾值?
下面是它可以創建驅動項目
var foldertoCreate = new DriveItem {
Name = $"TestFolder",
Folder = new Folder(),
};
var newFolder = await _graphClient.Drive
.Items["MyParent_Item_Id"]
.Children
.Request()
.AddAsync (foldertoCreate);