PhoneGap中文网

标题: phonegap 判断本地是否存在文件 [打印本页]

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





欢迎光临 PhoneGap中文网 (http://bbs.phonegap100.com/) Powered by Discuz! X3.2