728x90

파일 리스트 조회하기[이클립스]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import java.io.*;
 
public class CreateFile2 //파일 조회
{
    public static void main(String[] args)
    {
        String fname = "src/chap11/two";
        File f = new File(fname);
        
        File[] files = f.listFiles();
        
        for (int i = 0, j=0; i < files.length; i++)
        {
            if(files[i].getName().endsWith(".java"))        //끝에 .java 파일이 있으면 출력
            {
                System.out.println(j++ +1 +" . " + files[i].getName());
            }
        }
    }
}



결과



Posted by 앗뜨거
,