Amit Battan
Amit Battan

Reputation: 3018

phonegap iphone : Documents Directory Absolute path

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

Answers (1)

Steven
Steven

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

Related Questions