最佳答案
我想检查文件是否存在于我的包文件夹,但我不想创建一个新的。
File file = new File(filePath);
if(file.exists())
return true;
该代码是否在不创建新文件的情况下进行检查?