方法如下,传入参数为文件的绝对路径
//判断文件是否存在
private boolean fileIsExists(String filePath)
{
try
{
File f = new File(filePath);
if(!f.exists())
{
return false;
}
}
catch (Exception e)
{
return false;
}
return true;
}
网友评论