PhoneGap中文网

 找回密码
 立即注册
查看: 15738|回复: 0
打印 上一主题 下一主题

phonegap 判断本地是否存在文件

[复制链接]

55

主题

127

帖子

584

积分

高级会员

Rank: 4

积分
584
跳转到指定楼层
楼主
发表于 2016-4-6 15:44:22 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
如题:我要判断某文件是否存在于我的手机。
然后我用了一下代码:
  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() 返回值?
求大神解救
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关闭

站长推荐 上一条 /1 下一条

ionic4视频教程

Archiver|手机版|小黑屋| PhoneGap中文网 ( 京ICP备13027796号-1 )  

GMT+8, 2024-11-6 21:45 , Processed in 0.037638 second(s), 29 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表