http://picomo.blogspot.kr/2014/04/cc.html
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 | #include <stdio.h> #include <io.h> #include <conio.h> void main() { _finddata_t fd; long handle; int result = 1; handle = _findfirst( ".\\*.*" , &fd); //현재 폴더 내 모든 파일을 찾는다. if (handle == -1) { printf ( "There were no files.\n" ); return ; } while (result != -1) { printf ( "File: %s\n" , fd.name); result = _findnext(handle, &fd); } _findclose(handle); return ; } |
".\\*.* 여기에 경로 적으면 됨.
반응형
'차근차근 > C' 카테고리의 다른 글
[UNIX] 디렉토리함수 opendir(), readdir(), closedir(), lstat() (0) | 2014.11.20 |
---|---|
CString - ReverseFind , Mid ,MakeUpper (0) | 2014.11.20 |
<io.h> _finddata_t 구조체 (0) | 2014.11.19 |
하위폴더 파일 출력 / CFileFind Class (0) | 2014.11.19 |
fatal error LNK1169: 여러 번 정의된 기호가 있습니다. (2) | 2014.11.19 |