คำถามติดแท็ก microsoft-graph

5
c # - Microsoft Graph API - ตรวจสอบว่ามีโฟลเดอร์อยู่หรือไม่
ฉันใช้ Microsoft Graph API และฉันกำลังสร้างโฟลเดอร์ดังนี้: var driveItem = new DriveItem { Name = Customer_Name.Text + Customer_LName.Text, Folder = new Folder { }, AdditionalData = new Dictionary<string, object>() { {"@microsoft.graph.conflictBehavior","rename"} } }; var newFolder = await App.GraphClient .Me .Drive .Items["id-of-folder-I-am-putting-this-into"] .Children .Request() .AddAsync(driveItem); คำถามของฉันคือฉันจะตรวจสอบว่าโฟลเดอร์นี้มีอยู่และถ้ามันจะได้รับ ID ของโฟลเดอร์?
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.