Reputation: 3018
I am new to PhoneGap and I am using it with Xcode.
Can anybody tell me how to get to the absolute path of the Documents Directory in the index.html?
Upvotes: 2
Views: 1164
Reputation: 2979
function success(fileSystem) {
var path = fileSystem.root.fullPath;
}
// request the persistent file system
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, success, null);
path
should point to /Documents
.
Upvotes: 2