安卓系统;检查文件是否存在而不创建新的文件

我想检查文件是否存在于我的包文件夹,但我不想创建一个新的。

File file = new File(filePath);
if(file.exists())
return true;

该代码是否在不创建新文件的情况下进行检查?

252787 次浏览

你的代码块不会创建一个新的代码块,它只检查它是否已经在那里,而没有其他的。

File file = new File(filePath);
if(file.exists())
//Do something
else
// Do something else.

当您使用这段代码时,您并没有创建一个新的File,它只是为该文件创建一个对象引用,并测试它是否存在。

File file = new File(filePath);
if(file.exists())
//do something

当你说“在你的包文件夹中”,你是指你的本地应用程序文件吗?如果是这样,你可以使用Context.fileList ()方法获取它们的列表。只需遍历并查找您的文件。这是假设你用Context.openFileOutput ()保存了原始文件。

示例代码(在一个活动中):

public void onCreate(...) {
super.onCreate(...);
String[] files = fileList();
for (String file : files) {
if (file.equals(myFileName)) {
//file exits
}
}
}

Path类中的methods是语法的,这意味着它们对Path实例进行操作。但最终你必须访问file系统来验证特定的Path是否存在

 File file = new File("FileName");
if(file.exists()){
System.out.println("file is already there");
}else{
System.out.println("Not find file ");
}

这招对我很管用:

File file = new File(getApplicationContext().getFilesDir(),"whatever.txt");
if(file.exists()){
//Do something
}
else{
//Nothing
}
public boolean FileExists(String fname) {
File file = getBaseContext().getFileStreamPath(fname);
return file.exists();
}

Kotlin扩展属性

创建file对象时不会创建文件,它只是一个接口。

为了更容易地处理文件,Uri上有一个现有的.toFile函数

您还可以在文件和/或Uri上添加扩展属性,以进一步简化使用。

val File?.exists get() = this?.exists() ?: false
val Uri?.exists get() = File(this.toString).exists()

然后使用uri.existsfile.exists来检查。

if(new File("/sdcard/your_filename.txt").exists())){
// Your code goes here...
}