我正在编写一个带有Phonegap 1.4.1和Sencha的Android应用程序,用于下载和读取pdf文件。如何使用phonegap方法,javascript或ajax检查电话目录中是否存在该文件?
答案 0 :(得分:32)
我遇到了同样的问题。我无法得到Darkaico的工作答案,但凭借Kurt的答案,我可以让它发挥作用。
这是我的代码:
function checkIfFileExists(path){
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem){
fileSystem.root.getFile(path, { create: false }, fileExists, fileDoesNotExist);
}, getFSFail); //of requestFileSystem
}
function fileExists(fileEntry){
alert("File " + fileEntry.fullPath + " exists!");
}
function fileDoesNotExist(){
alert("file does not exist");
}
function getFSFail(evt) {
console.log(evt.target.error.code);
}
然后你只需要像这样执行:
checkIfFileExists("path/to/my/file.txt");
答案 1 :(得分:21)
我使用.getFile('fileName',{create:false},success,failure)
方法获取文件句柄。如果我收到success
回调文件,那么任何失败都意味着该文件存在问题。
答案 2 :(得分:20)
上述答案对我不起作用,但确实如此:
window.resolveLocalFileSystemURL(fullFilePath, success, fail);
答案 3 :(得分:5)
您可以使用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);
答案 4 :(得分:4)
$.ajax({
url:'file///sdcard/myfile.txt',
type:'HEAD',
error: function()
{
//file not exists
alert('file does not exist');
},
success: function()
{
//file exists
alert('the file is here');
}
});
答案 5 :(得分:2)
@PassKit是正确的,在我的情况下我需要添加一个eventlistener
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
window.requestFileSystem = window.requestFileSystem || window.webkitRequestFileSystem;
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, fsSuccess, fsError);
}
然后为值&#34; fileSystemRoot&#34;在功能&#34; fsSuccess&#34;
var fileSystemRoot; // Global variable to hold filesystem root
function fsSuccess(fileSystem) {
fileSystemRoot = fileSystem.root.toURL();
}
功能&#34; checkFileExists&#34;
function checkFileExists(fileName) {
var http = new XMLHttpRequest();
http.open('HEAD', fileName, false);
http.send(null);
if (http.status.toString() == "200") {
return true;
}
return false
}
检查文件是否存在
if (checkFileExists(fileSystemRoot + "fileName")) {
// File Exists
} else {
// File Does Not Exist
}
IOS中的var fileSystemRoot返回我&#34; cdvfile:// localhost / persistent /&#34; 并且文件存储在&#34; // var / mobile / Containers / Data / Application / {AppID} / Documents&#34;
非常感谢@PassKit,这是在同步模式下运行并在IOS 8.1中进行了测试
答案 6 :(得分:1)
Kurt和Thomas提供了更好的答案,因为Darkaico的功能不仅会检查文件是否存在,还会打开文件并将其读取到最后。
这对小文件来说不是问题,但是如果你检查一个大文件,那么应用程序可能会崩溃。
无论如何,请使用.getFile方法 - 这是最佳选择。
答案 7 :(得分:1)
我已经测试了以下代码段,并且在PhoneGap 3.1
中对我很有效String.prototype.fileExists = function() {
filename = this.trim();
var response = jQuery.ajax({
url: filename,
type: 'HEAD',
async: false
}).status;
return (response != "200") ? false : true;}
if (yourFileFullPath.fileExists())
{}
答案 8 :(得分:0)
所有当前答案的问题在于它们依赖于更新全局变量的异步回调。如果要检查多个文件,则存在变量将由不同的回调设置的风险。
基本的Javascript XMLHttpRequest检查非常适合同步检查文件是否可以通过Javascript访问。
function checkFileExists(fileName){
var http = new XMLHttpRequest();
http.open('HEAD', fileName, false);
http.send(null);
return (http.status != 404);
}
只需传入文件的完整路径,然后就可以可靠地使用:
if (checkFileExists(fullPathToFile)) {
// File Exists
} else {
// File Does Not Exist
}
要将根路径存储在您可以使用的变量中:
var fileSystemRoot; // Global variable to hold filesystem root
window.requestFileSystem = window.requestFileSystem || window.webkitRequestFileSystem;
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, fsSuccess, fsError);
function fsError() {
console.log("Failed to get Filesystem");
}
function fsSuccess(fileSystem) {
console.log("Got Filesystem: Root path " + fileSystem.root);
// save the file to global variable for later access
window.fileSystemRoot = fileSystem.root;
}
答案 9 :(得分:0)
请注意:
当我获得文件系统时,我将它保存在宏pg对象下的var中:
pg = {fs:{}} // I have a "GOTFS" function... a "fail" function
pg.fs.filesystem = window.requestFileSystem(window.PERSISTENT, 0, pg.fs.GOTFS, pg.fs.fail);
所以我的代码非常简单......
var fileExists = function(path, existsCallback, dontExistsCallback){
pg.fs.fileSystem.root.getFile(path, { create: false }, existsCallback, dontExistsCallback);
// "existsCallback" will get fileEntry as first param
}
答案 10 :(得分:0)
此代码可用于自定义案例,完整文档在此处:download if not exist
document.addEventListener("deviceready", init, false);
//The directory to store data
var store;
//Used for status updates
var $status;
//URL of our asset
var assetURL = "https://raw.githubusercontent.com/cfjedimaster/Cordova-Examples/master/readme.md";
//File name of our important data file we didn't ship with the app
var fileName = "mydatafile.txt";
function init() {
$status = document.querySelector("#status");
$status.innerHTML = "Checking for data file.";
store = cordova.file.dataDirectory;
//Check for the file.
window.resolveLocalFileSystemURL(store + fileName, appStart, downloadAsset);
}
function downloadAsset() {
var fileTransfer = new FileTransfer();
console.log("About to start transfer");
fileTransfer.download(assetURL, store + fileName,
function(entry) {
console.log("Success!");
appStart();
},
function(err) {
console.log("Error");
console.dir(err);
});
}
//I'm only called when the file exists or has been downloaded.
function appStart() {
$status.innerHTML = "App ready!";
}
答案 11 :(得分:-1)
var fileexist;
function checkIfFileExists(path){
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem){
fileSystem.root.getFile(path, { create: false }, fileExists, fileDoesNotExist);
}, getFSFail); //of requestFileSystem
}
function fileExists(fileEntry){
alert("File " + fileEntry.fullPath + " exists!");
fileexist = true;
}
function fileDoesNotExist(){
alert("file does not exist");
fileexist = false;
}
function getFSFail(evt) {
console.log(evt.target.error.code);
fileexist=false;
}
现在你可以使用条件
if(fileexist=="true"){
//do something;
}
else if(fileexist=="false"){
//do something else
}
答案 12 :(得分:-3)
如果你需要一个布尔兼容的方法......
function checkIfFileExists(path){
var result = false;
window.requestFileSystem(
LocalFileSystem.PERSISTENT,
0,
function(fileSystem){
fileSystem.root.getFile(
path,
{ create: false },
function(){ result = true; }, // file exists
function(){ result = false; } // file does not exist
);
},
getFSFail
); //of requestFileSystem
return result;
}
答案 13 :(得分:-3)
我上面的@Thomas Soti回答并将其修改为简单的是/否回复。
function fileExists(fileName) {
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem){
fileSystem.root.getFile(cordova.file.dataDirectory + fileName, { create: false }, function(){return true}, function(){return false});
}, function(){return false}); //of requestFileSystem
}
// called as
if (fileExists("blah.json")) {
or
var fe = fileExists("blah.json) ;
更正....这不起作用。我现在正在修复此问题。