gpt4 book ai didi

java - 尝试检查内部存储中是否存在文件

转载 作者:IT老高 更新时间:2023-10-28 20:56:28 24 4
gpt4 key购买 nike

以下代码是我尝试识别内部存储中是否存在文件的方法,MODE_PRIVATE

public boolean isset(String filename){
FileInputStream fos = null;
try {
fos = openFileInput(filename);
//fos = openFileInput(getFilesDir()+"/"+filename);
if (fos != null) {
return true;
}else{
return false;
}
} catch (FileNotFoundException e) {
return false;
}

//File file=new File(mContext.getFilesDir(),filename);

//boolean exists = fos.exists();
}

但是,它会进入异常并且不会继续执行代码。它不做返回。为什么?

最佳答案

希望这个方法对你有帮助。

public boolean fileExist(String fname){
File file = getBaseContext().getFileStreamPath(fname);
return file.exists();
}

关于java - 尝试检查内部存储中是否存在文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10576930/

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