2

フォルダー 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

4

1 に答える 1

3

親参照を追加する必要があります (非常に近かった):

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

parentId親の文字列ファイル ID はどこにありますか。

于 2013-01-06T01:07:50.037 に答える