본문 바로가기
SpringBoot

디렉터리의 특정패턴의 파일 리스트 가져오기

by ByteBridge 2015. 10. 12.
반응형


// 해당 디렉토리의 특정 패턴으로 된 파일이름 리스트가져오기

public String[] getFileList(String path,final String pattern)

{

File file = new File(path);

String fileList[] = file.list(new FilenameFilter()

{

@Override

public boolean accept(File dir, String name) 

{

return name.startsWith(pattern);

}

});

return fileList;

}

반응형