import java.io.File;
/**
* 判断指定路径的文件是否存在
*
* @author Gerrard
*/
public class IsFileExists {
/**
* @param args
*/
public static void main(String[] args) {
File file = new File("D://test//behind.rar");
if (file.exists()) {
System.out.println("文件:" + file.getPath() + "|||||存在");
} else {
System.out.println("文件:" + file.getPath() + "|||||不存在!");
}
}
}