phonegap iphone:文档目录绝对路径

时间:2011-09-30 09:59:08

标签: ios cordova

我是PhoneGap的新手,我正在使用Xcode。

有人能告诉我如何进入index.html中文档目录的绝对路径吗?

1 个答案:

答案 0 :(得分:2)

function success(fileSystem) {
    var path = fileSystem.root.fullPath;
}

// request the persistent file system
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, success, null);

path应指向/Documents

相关问题