我正在尝试使用Google Drive SDK。我可以使用身份验证并获取DriveService
的实例。但是我想在root上添加一个简单的文件夹,我发现了这个:
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没有Fetch方法?
如何使用File对象将其插入根文件夹?
答案 0 :(得分:3)
File file = service.Files.Insert(body).Execute();
完美地工作!!!
我刚刚在班上遇到了一个实现IDataStore的错误。