Upload Files to specified folder in Google Drive

2019-02-24 23:21发布

I am having a problem on uploading files to an existing folder in google drive. It keeps telling me "xxx" does not exist.

String folderId = "Storage";

ChildReference newChild = new ChildReference();
newChild.setId(fileContent.getName());

drive.children().insert(folderId, newChild).execute();

refer from https://developers.google.com/drive/v2/reference/children/insert

2条回答
祖国的老花朵
2楼-- · 2019-02-24 23:44

Yea, finally i can upload my whole directory of file to specific folder in google drive simply because of unmatched folderid.

I've worked success in following code by using setParents function.

String folderId = "0BwI6rRcqw8ZURlpleEVsRUhod0U";

File fileContent = new java.io.File(Environment.getExternalStorageDirectory() + "/DCIM/Camera/" + Files[count].getName());

FileContent mediaContent = new FileContent("image/jpeg", fileContent);

com.google.api.services.drive.model.File body = new com.google.api.services.drive.model.File();

body.setTitle(fileContent.getName());
body.setMimeType("image/jpeg");

body.setParents(Arrays.asList(new ParentReference().setId(folderId)));

com.google.api.services.drive.model.File file = drive.files().insert(body, mediaContent).execute();
查看更多
Viruses.
3楼-- · 2019-02-24 23:56

folderId is the unique identifier of the Folder object, not the nice name like "Storage". You can retrieve the folder's ID using the files().list() API call, possibly with a q attribute to filter the returned results down as needed.

查看更多
登录 后发表回答