Android 获取某个文件夹下的所有文件
// 数据文件夹
private final String dataFile = "dataFile";
/**
* 生成文件夹
* */
private File makeDataFile() {
File file = null;
try {
file = new File(getExternalFilesDir(dataFile).getPath());
if (!file.exists()) {
file.mkdir();
}
} catch (Exception e) {
Log.i("error:", e + "");
}
return file;
}
/**
* 获取dataFile文件夹下的所有文件
* */
public ArrayList<String> getAllDataFileName(){
// 文件夹路径
String collectionPath = makeDataFile().getPath();
ArrayList<String> fileList = new ArrayList<>();
File file = new File(collectionPath);
File[] tempList = file.listFiles();
for (int i = 0; i < tempList.length; i++) {
if (tempList[i].isFile()) {
System.out.println("文 件:" + tempList[i].getName());
// tempList[i].toString();// 路径
// tempList[i].getName();// 文件名
// 文件名
String fileName = tempList[i].getName();
if (fileName.endsWith("shp")){
// 文件大小
// String fileSize = FileSizeUtil.getAutoFileOrFilesSize(tempList[i].toString());
fileList.add(fileName);
}
}
}
return fileList;
}