본문 바로가기

Programming/▷ C

[C] 파일 하위 디렉토리 까지 탐색 코드

원래 C언어로 구현한 하위 디렉토리 탐색 기능은 구글링을 통해 찾으려 했으나 

현재 디렉토리 파일 목록 출력 예시코드만 무지하게 많았고 정작 윈도우 서브 디렉토리 탐색 소스는 잘 보이지 않았다. 

그래서 재귀를 이용해 하위 디렉토리 까지 볼수 있도록 C: 경로를 예시로 코드를 짰다.

 

[C: 경로 하위 디렉토리 까지 탐색코드]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#pragma warning ( disable : 4996 )
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <io.h>
#include <Windows.h>
 
struct _finddata_t fd;
 
int isFileOrDir()
{
    if (fd.attrib & _A_SUBDIR)
        return 0// 디렉토리면 0 반환
    else
        return 1// 그밖의 경우는 "존재하는 파일"이기에 1 반환
 
}
 
void FileSearch(char file_path[])
{
    intptr_t handle;
    int check = 0;
    char file_path2[_MAX_PATH];
 
    strcat(file_path, "\\");
    strcpy(file_path2, file_path);
    strcat(file_path, "*");
 
    if ((handle = _findfirst(file_path, &fd)) == -1)
    {
        printf("No such file or directory\n");
        return;
    }
 
    while (_findnext(handle, &fd) == 0)
    {
        char file_pt[_MAX_PATH];
        strcpy(file_pt, file_path2);
        strcat(file_pt, fd.name);
 
        check = isFileOrDir();    //파일인지 디렉토리 인지 식별
 
        if (check == 0 && fd.name[0!= '.')
        {
            FileSearch(file_pt);    //하위 디렉토리 검색 재귀함수
        }
        else if (check == 1 && fd.size != 0 && fd.name[0!= '.')
        {
            printf("파일명 : %s, 크기:%d\n", file_pt, fd.size);
        }
    }
    _findclose(handle);
}
 
int main()
{
    char file_path[_MAX_PATH] = "c:";    //C:\ 경로 탐색
 
    FileSearch(file_path);
 
    return 0;
}
cs

 

'Programming > ▷ C' 카테고리의 다른 글

Project_Ransomware  (0) 2018.09.13
[C] AES 128bit Encrypt/Decrypt  (0) 2018.06.15
C base64 encode/decode  (0) 2018.06.11
[C] 파일 확장자 변경 예시  (0) 2017.10.24
[C] 파일 or 디렉토리 식별  (0) 2017.10.24