在C#中,Google Drive API,插入新文件時,強制轉換爲Google doc格式。帶轉換的Google Drive Api文件插入檢索第二個文件ID
API返回新轉換和上傳文件的文件ID。
但是,API還插入原始文件的副本未轉換。
如何獲取第二個文件的文件ID?請求的responsebody只返回一個文件資源
FilesResource.InsertMediaUpload Request = Service.Files.Insert(body, Stream1, filetype);
Request.Convert = true;
Request.Upload();
Google.Apis.Drive.v2.Data.File File1 = Request.ResponseBody;
因爲我可以看到在Google驅動器帳戶中創建的兩個文件。 – Lambda