即使文件不存在,Java File.exists()也会返回true

时间:2014-09-11 11:32:46

标签: java file

String filePath = "C:\Users\d654227/Desktop/abdc.url"; // Actually its getting constructed dynamically.  

File file = new File(filePath);
if(file.exists()){
       LogUtil.logConsole(filePath+" File already exist.");
        file.delete();
}else
{
        LogUtil.logConsole(filePath+" File doesnt exist.");
}
  

在IE 9中使用Windows 7。   它正在通过applet执行。相同的代码适用于我们的开发环境和大多数客户,除了一个客户。

1 个答案:

答案 0 :(得分:1)

尝试使用所有'/'编写路径。 并注意String不是Sting。