2014-01-24 151 views
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對象將其插入根文件夾?

+0

的可能的複製[如何使用.NET API在谷歌雲端硬盤中創建文件夾嗎?](http://stackoverflow.com/questions/10715962/how-to-create-folder-in-google-drive-using-net -API) –

回答

3
File file = service.Files.Insert(body).Execute(); 

工作完美!!!

我剛剛在我的班級發生了一個實現IDataStore的錯誤。

相關問題