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执行。相同的代码适用于我们的开发环境和大多数客户,除了一个客户。
答案 0 :(得分:1)
尝试使用所有'/'编写路径。 并注意String不是Sting。