我正在尝试为我的Android应用程序创建空文件夹..
File body = new File();
body.setTitle("title");
java.io.File fileContent = new java.io.File("title");
FileContent mediaContent = new FileContent("application/vnd.google-apps.folder", fileContent);
File file = service.files().insert(body, mediaContent).execute();
这似乎不起作用.....
获得例外:
java.io.FileNotFoundException:/ title打开失败ENOENT(没有这样的文件或目录)
引起:libcore.io.ErrnoException:open failed:ENOENT(没有这样的文件或目录)
答案 0 :(得分:19)
...解决
File body = new File();
body.setTitle("title");
body.setMimeType("application/vnd.google-apps.folder");
File file = service.files().insert(body).execute();
它将在google drive中创建名为 title 的文件夹。
答案 1 :(得分:0)
嗯,我得到“权限不足[403]”错误