我的 iPhone 应用程序的沙箱包括 3 个目录:Documents、Library 和 tmp。
如果我使用这个 Cordova 代码片段 ,我可以访问Documents目录:
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, onSuccess, onError);
如果我使用这个 Cordova 代码片段,我可以访问tmp目录:
window.requestFileSystem(LocalFileSystem.TEMPORARY, 0, onSuccess, onError);
有没有办法使用 Cordova访问库目录?