遍历文件夹内所有文件

File file = new File("文件夹路径");
File[] tempList = file.listFiles();

for (int i = 0; i < tempList.length; i++) {

System.out.println(tempList[i].getName());

 

转载于:https://www.cnblogs.com/luweib/p/7440597.html

你可能感兴趣的:(遍历文件夹内所有文件)