如何使用C#将文件上传到Google云端硬盘中的特定文件夹

时间:2013-01-05 21:20:18

标签: google-drive-api

我有一个文件夹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上的文档。

1 个答案:

答案 0 :(得分:2)

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

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

其中parentId是父项的字符串文件ID。