Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Won't Fix
-
1.5.0
-
None
-
None
Description
According to the release notes for 5.0, this should not be an issue:
"Prefix URIs for file API with file:/// and persistent storage should never point to SD card"
However, using the following method, my file is still being stored to the SD card:
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {
fileSystem.root.getFile("account.txt",
, function(fileEntry) {
fileEntry.file(function(file) {
console.log(file); //
});
});
});
Attachments
Issue Links
- Is contained by
-
CB-3818 Organize API Reference
- Closed