admin管理员组文章数量:1344975
I'm having an issue on Android (not tested on other platforms) where I would like to use the cordova file API to read a file from the /www folder. There are conflicting pieces of information on the internet about whether this is possible or not. I've followed an example like:
window.resolveLocalFileSystemURL(cordova.file.applicationDirectory + "www/index.html", gotFile, fail);
However I'm getting error 1 (file not found). I can use AJAX to retrieve the file I need but it doesn't suit my use case. I want to query a directory in the /www folder and read a dynamically named file. Any ideas?
I'd like to have an updated answer, as the one I've seen is over 1 year old: Can you read files in the www folder using PhoneGap.'s JS methods?
Thanks in advance.
I'm having an issue on Android (not tested on other platforms) where I would like to use the cordova file API to read a file from the /www folder. There are conflicting pieces of information on the internet about whether this is possible or not. I've followed an example like:
window.resolveLocalFileSystemURL(cordova.file.applicationDirectory + "www/index.html", gotFile, fail);
However I'm getting error 1 (file not found). I can use AJAX to retrieve the file I need but it doesn't suit my use case. I want to query a directory in the /www folder and read a dynamically named file. Any ideas?
I'd like to have an updated answer, as the one I've seen is over 1 year old: Can you read files in the www folder using PhoneGap.'s JS methods?
Thanks in advance.
Share Improve this question edited May 23, 2017 at 10:31 CommunityBot 11 silver badge asked Oct 9, 2014 at 15:30 Luke DeightonLuke Deighton 3283 silver badges10 bronze badges2 Answers
Reset to default 6You can use this function to get all available files in www/ folder
function listDir(path){
window.resolveLocalFileSystemURL(path,
function (fileSystem) {
var reader = fileSystem.createReader();
reader.readEntries(
function (entries) {
console.log(entries);
},
function (err) {
console.log(err);
}
);
}, function (err) {
console.log(err);
}
);
}
//example: list of www/ folder in cordova/ionic app.
listDir(cordova.file.applicationDirectory + "www/");
(The www folder is in readonly mode. You can't write anything in it. Cordova plugin file documentation explain this. But you can use the copyTo() method of html5 API File to copy your data in another location)
Per Raymond Camden from earlier this year, this isn't possible with the cordova=file-plugin: http://www.raymondcamden./2015/01/21/phonegapcordova-tip-working-with-files-under-www-and-android -
First and foremost, you cannot use the File system APIs to work with files under the www folder. The docs for the File plugin incorrectly states that you have Read access to the application directory (which would contain www) but that is incorrect.
But there are several directories that you do have access to using the file plugin. Here's some sample code to retrieve the contents of a few of them: https://stackoverflow./a/29905718/346550
本文标签: javascriptCordova File PluginRead from www folderStack Overflow
版权声明:本文标题:javascript - Cordova File Plugin - Read from www folder? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743753140a2533021.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论