📌  相关文章
📜  android studio 文件存在 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:32.858000             🧑  作者: Mango

代码示例2
File file = new File(filePath);
if(file.exists()){      
//Do something
}else{
// Do something else.
}