我怎样才能知道Android sdcard或内部存储中是否存在任何文件?
案例:我们没有确切的位置目录。我想在任何目录中检查该文件。
如果有任何方法或任何示例,请告诉我。
谢谢
答案 0 :(得分:1)
您可以使用File.exists()
File file = new File(filePathString);
if(file.exists()) {
//File is present
}
else{
// File is not present,Create a new one.
try {
file.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}
}
答案 1 :(得分:1)