PhoneGap中文网
标题:
phonegap 判断本地是否存在文件
[打印本页]
作者:
jyxzfw
时间:
2016-4-6 15:44
标题:
phonegap 判断本地是否存在文件
如题:我要判断某文件是否存在于我的手机。
然后我用了一下代码:
var isExist = false;
var fileUrl="file:///storage/emulated/0/Download/stores.txt";
function IsFileExist(directory,fileName){
this.fileUrl = fileUrl
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, onFileSystemSuccess, null);
}
function onFileSystemSuccess(fileSystem) {
fileSystem.root.getFile( fileUrl, {create: false}, function(){isExist = true}, function(){isExist = false});
}
复制代码
本来想直接在 IsFileExist() 中返回 isExist ,然而
window.requestFileSystem 成功要通过回调函数
onFileSystemSuccess() 。
那么问题来了。
首先我这么写对不对啊? 在
fileSystem.root.getFile 的回调函数判断文件是否存在(我自以为是:成功=存在;失败=不存在)。
还有,能否做到把
window.requestFileSystem 的回调函数
onFileSystemSuccess() return 的值
作为
IsFileExist() 返回值?
求大神解救
欢迎光临 PhoneGap中文网 (http://bbs.phonegap100.com/)
Powered by Discuz! X3.2