gpt4 book ai didi

android - 如何检查目录和文件是否存在于 Phonegap 框架中?

转载 作者:行者123 更新时间:2023-11-29 13:20:51 25 4
gpt4 key购买 nike

Phonegap框架中如何判断目录和文件是否存在?
这在 Phonegap 中是如何完成的
请帮帮我

最佳答案

您可以使用文件读取器对象。

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

关于android - 如何检查目录和文件是否存在于 Phonegap 框架中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14392274/

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