java中判断文件夹是否存在文件的方法

本篇文章为大家展示了java中判断文件夹是否存在文件的方法,代码简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。

1、首先使用File类创建一个File对象;

2、然后判断是否是目录,不是目录就返回

3、之后使用file.list()方法获取目录下文件并存入数组

4、最后判断数组长度大于0则存在文件。

代码如下:

/**
* 读取某个文件夹下的所有文件
*/
public static boolean hasfile(String filepath) throws FileNotFoundException, IOException {
try {
File file = new File(filepath);
if (!file.isDirectory()) {
System.out.println("请输入一个目录");
return false;
} else if (file.isDirectory()) {
String[] filelist = file.list();
if (filelist.length) {
System.out.println("该目录下存在文件");
}
}
} catch (FileNotFoundException e) {
System.out.println("readfile() Exception:" + e.getMessage());
}
return true;
}

使用:System.out.println( hasfile("c:/users/admin/desktop") ? "存在文件" : "不存在文件" );