package fileFind;
import java.io.File;
public class dirFind {
public static void main(String[] args) {
// TODO Auto-generated method stub
String path = "C:/";
//c:/Users/king/Downloads/asprise-ocr-java-15.3.1-trial-windows/aocr/com/asprise/ocr
File dirFile = new File(path);
File[] fileList = dirFile.listFiles();
System.out.println(fileList.length);
for (File tempFile : fileList) {
if (tempFile.isFile()) {
String tempPath = tempFile.getParent();
String tempFileName = tempFile.getName();
System.out.println("Path=" + tempPath);
System.out.println("FileName=" + tempFileName);
/*** Do something withd tempPath and temp FileName ^^; ***/
}
}
}
}
'JAVA > 자바' 카테고리의 다른 글
자바 tess4j import 하기 (0) | 2015.10.27 |
---|---|
자바 OCR 오픈소스 tess4j (0) | 2015.10.27 |
자바 Arraylist 정렬후 최소값 구하기 간단하게 (0) | 2015.10.15 |
자바 이미지 형태 비교 (0) | 2015.10.14 |
자바 이미지 불러와서 수정 후 저장 (0) | 2015.10.13 |