我是PhoneGap的新手,我正在使用Xcode。
有人能告诉我如何进入index.html中文档目录的绝对路径吗?
答案 0 :(得分:2)
function success(fileSystem) {
var path = fileSystem.root.fullPath;
}
// request the persistent file system
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, success, null);
path
应指向/Documents
。