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 ^^; ***/
            }
        }
    }

}

블로그 이미지

왕왕왕왕

,