1
我正在嘗試使用Google Drive SDK。我沒有認證和獲得DriveService
的實例。但我想補充的根簡單的文件夾,我發現這一點:在Google Drive .NET上創建文件夾
File body = new File();
body.Title = "document title";
body.Description = "document description";
body.MimeType = "application/vnd.google-apps.folder";
// service is an authorized Drive API service instance
File file = service.Files.Insert(body).Fetch();
但Google.Apis.Drive.v2.FilesResource.InsertRequest沒有獲取方法?
如何使用File對象將其插入根文件夾?
的可能的複製[如何使用.NET API在谷歌雲端硬盤中創建文件夾嗎?](http://stackoverflow.com/questions/10715962/how-to-create-folder-in-google-drive-using-net -API) –