我有一个文件夹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
上的文档。
答案 0 :(得分:2)
你应该添加一个父引用(你非常接近):
body.Parents = new List<ParentReference>()
{new ParentReference() {Id = parentId}};
其中parentId
是父项的字符串文件ID。