gpt4 book ai didi

google-drive-api - 如何使用 C# 将文件上传到 Google Drive 中的特定文件夹

转载 作者:行者123 更新时间:2023-12-04 05:16:41 31 4
gpt4 key购买 nike

我有一个文件夹 ID 和一个文件,我应该将其上传到该 gDrive 文件夹中。我尝试了以下方法:

File body = new File();
body.Title = titulo; // titulo is a string that contains the tittle of the file
body.Description = descripcion; // the description, it is a string as well
body.MimeType = setMimetype(rutaArchivo); // and this is a method that sets the mimetype according to the file extension.`

我尝试使用 body.Parents但我没有运气, body.parents.add不只收到一个字符串(我试图给出包含 gdrive 文件夹 ID 的字符串)而且我不太了解 parents.Insert 上的文档。 .

最佳答案

你应该添加一个父引用(你非常接近):

body.Parents = new List<ParentReference>()
{new ParentReference() {Id = parentId}};

哪里 parentId是父级的字符串文件 ID。

关于google-drive-api - 如何使用 C# 将文件上传到 Google Drive 中的特定文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14176517/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com