如果不使用文件输入流,我们如何检查Android文件系统中是否存在给定文件。因为我只想检查给定路径上是否存在该文件。
答案 0 :(得分:1)
File myFile = new File("/path/to/file");
if (myFile.isFile()) {
...
}
答案 1 :(得分:0)
如果您使用openFileOutput
方法创建了文件,则可以使用
File mFile = new File(getBaseContext().getFilesDir(),FileName);
if (mFile.exists() )
{
//File is Exits.
}
else
{
//File is not Exits.
}
希望这会有所帮助