file.exists()和file.createNewFile()无法正常工作?

时间:2012-08-15 19:06:19

标签: java file-io

基本上,我要说File f1 = new File("C:\\somedir\\batch1.bat");File f2 = new File("C:\\somedir\\batch2.bat");我有2个ifs

if(f1.exists() == false)
{
    showMessage("File 1 not detected, creating new...");
    f1.createNewFile();
}
else
{
    showMessage("File 1 detected, deleting it and creating new...");
    f1.delete();
    f1.createNewFile();
}

if(f2.exists() == false)
{
    showMessage("File 2 not detected, creating new...");
    f2.createNewFile();
}
else
{
    showMessage("File 2 detected, deleting it and creating new...");
    f2.delete();
    f2.createNewFile();
}

首先如果执行“else”代码,无论文件是否存在,第二个执行“if”部分,而不创建新文件。请帮助!

修改

我的showMessage(String msg)方法确实System.out.println(msg),所以你知道。

1 个答案:

答案 0 :(得分:3)

嗯我确定不是问题,但这样做更具可读性:

File f = new File(filePathString);
if(!f.exists()) { /* do something */ }

而不是:

if(f1.exists() == false)
    {
      ...
    }

删除文件时也要检查其返回值:

if(f.delete()) {//deleted successfully
}else {//couldnt delete
   //show error message
}

正如PeterLawrey所说,你应该为createNewFile()做同样的事情:

if(f.createNewFile()) {//created successfully
}else {//couldnt create
   //show error message
}

最后在尝试执行任何操作之前始终检查权限:

if(f.canRead()&&f.canWrite()) {//can read and write free to do what is needed
   //do stuff
}else {
}