任何人都可以告诉我如何获取特定位置的文件名
E:/abc_RESPONSE/Response_
。
我尝试使用
java.io.File.getName()
返回路径名称序列的姓氏的方法,表示返回此抽象路径名称表示的文件或目录的名称。但我需要在该特定位置存在的所有文件名。
String name = (String)(new File("E:/abc_RESPONSE/Response_").getName());
我使用上面的代码请帮助实现这个。
答案 0 :(得分:2)
试试这个..
public void listFiles(String directoryName){
File directory = new File(directoryName);
//get all the files from a directory
File[] fList = directory.listFiles();
for (File file : fList){
if (file.isFile()){
System.out.println(file.getName());
}
}
}
答案 1 :(得分:1)
试试这个
String[] names = new File("E:/abc_RESPONSE/Response_").list();