我正在开发一个文件共享应用,想要访问iPhone中的Photos文件夹。有没有办法用胶子做到这一点。
注意:在android中,这很容易实现:
File dcim = Services.get(StorageService.class)
.map(s -> s.getPublicStorage("DCIM").get())
.orElseThrow(() -> new IOException("Error: DCIM not available"));