리눅스 파일 탐색 ftw
리눅스에서 파일(혹은 디렉토리)를 탐색하기 위해서는 ftw와 nftw 함수를 사용하면 된다. ftw.h 파일이 필요하다. 함수를 사용하기 전에 include 해 두기 바란다. #include 프로토 타입은 다음과 같으며 콜백 함수를 이용하므로 함수 포인터가 포함되어 있다. int ftw ( const char *dir, int (*fn)(const char *file, const struct stat *sb, int flag), int depth); int nftw ( const char *dir, int (*fn)(const char *file, const struct stat *sb, int flag, struct FTW *s), int depth, int flags); int list_file( c..