gpt4 book ai didi

javascript - Cordova 检查 url 中的文件是否存在

转载 作者:数据小太阳 更新时间:2023-10-29 05:00:00 25 4
gpt4 key购买 nike

我正在使用 cordova/phonegap 并且需要知道文件是否存在

这是带有路径和文件名的代码:

storeUrl = cordova.file.dataDirectory+'myfolder/myfile.mp3';

如何检查这个文件是否存在?

最佳答案

尝试来自此链接的代码: https://cordovablogsblogs.wordpress.com/2015/06/10/how-to-check-a-files-existence-in-phone-directory-with-phonegap/ .代码:

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);
}

关于javascript - Cordova 检查 url 中的文件是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34692092/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com