小编典典

如何使用phonegap检查文件在电话目录中的存在

ajax

我正在用Phonegap
1.4.1和Sencha编写一个Android应用程序,该应用程序可以下载和读取pdf文件。如何使用phonegap方法,javascript或ajax检查文件在电话目录中是否存在?


阅读 243

收藏
2020-07-26

共1个答案

小编典典

您可以使用phonegap中的FileReader对象检查文件是否存在。您可以检查以下内容:

var reader = new FileReader();
var fileSource = <here is your file path>

reader.onloadend = function(evt) {

    if(evt.target.result == null) {
       // If you receive a null value the file doesn't exists
    } else {
        // Otherwise the file exists
    }         
};

// We are going to check if the file exists
reader.readAsDataURL(fileSource);
2020-07-26