I am now developing a cordova app which platform is browser.
I need to access a text file from local file system, so I am using the cordova-plugin-file.
But I
Good reference point for the file plugin are its auto and manual tests, which can be run in cordova-plugin-test-framework and also the file plugin documentation.
A few points on your question:
100500*1024*1024
, for example 10*1024*1024
,window.webkitResolveLocalFileSystemURL("filesystem:" + cordova.file.applicationDirectory + "1111.csv", gotFile, fail);
try to use
window.resolveLocalFileSystemURL("filesystem:" + cordova.file.applicationDirectory + "persistent/1111.csv", gotFile, fail);