我一直在嘗試將純文本文件保存到Android上Google雲端硬盤中的特定文件夾中。將文件保存在Google Drive SDK的特定文件夾中
到目前爲止使用我已經能夠做到在正確的方向去的幾件事情在谷歌雲端硬盤中的文件和QuickStart Guide,首先,我能創造一個純文本文件:
File body = new File();
body.setTitle(fileContent.getName());
body.setMimeType("text/plain");
File file = service.files().insert(body, textContent).execute();
我已經能夠在谷歌Drive大道的根目錄創建一個新的文件夾:
File body = new File();
body.setTitle("Air Note");
body.setMimeType("application/vnd.google-apps.folder");
File file = service.files().insert(body).execute();
我也一直能與列出的所有文件夾在用戶的谷歌雲端硬盤帳戶:
List<File> files = service.files().list().setQ("mimeType = 'application/vnd.google-apps.folder'").execute().getItems();
for (File f : files) {
System.out.println(f.getTitle() + ", " + f.getMimeType());
}
但是,我有點卡住如何將文本文件保存到Google雲端硬盤中的文件夾。
工作就像一個魅力,非常感謝你! =) – Gatekeeper
你如何獲得「parentId」的保留? –
如果你知道你要去哪裏商店,它幾乎直截了當 – the100rabh