Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Vuetify
- Visual Studio
- mysql -u root -p
- error MSB8020
- Numa Numa
- Before start of result set
- default profile
- MFC
- MySQL
- startingDirectory
- error
- vue config
- tailwindcss
- default path
- 상단 메뉴 없애기
- 디렉터리 파일 검색
- 응답없음
- 다이얼로그 복사
- Linux
- 누마 누마
- MSB8020
- useEffect
- window terminal
- Pivotal
- explore.exe
- componentDidUpdate
- mysql 응답없음
- 머신 러닝
- DIR함수
- windows-build-tools
Archives
- Today
- Total
갓토리
C] 파일목록 출력 예제 본문
1234567891011121314151617181920212223242526272829303132333435 #include <stdio.h>#include <stdlib.h> // exit()#include <io.h>#include <errno.h>int main(void) {_finddatai64_t c_file;intptr_t hFile;char path[] = "*.*";if ( (hFile = _findfirsti64(path, &c_file)) == -1L ) {switch (errno) {case ENOENT:printf(":: 파일이 없음 ::\n"); break;case EINVAL:fprintf(stderr, "Invalid path name.\n"); exit(1); break;case ENOMEM:fprintf(stderr, "Not enough memory or file name too long.\n"); exit(1); break;default:fprintf(stderr, "Unknown error.\n"); exit(1); break;}} // end ifelse {printf("-- 파일 목록 --\n");do {printf("%s\n", c_file.name);} while(_findnexti64(hFile, &c_file) == 0);_findclose(hFile); // _findfirsti64(), _findnexti64()에 사용된 메모리를 반환} // end elsereturn 0;}cs
'IT > 프로그래밍' 카테고리의 다른 글
CSS] div태그 쓸때 공백 없애기 (0) | 2016.05.05 |
---|---|
Spring] 초보자들이 겪을 수 있는 에러 (1) | 2015.10.25 |
안드로이드] SQLite (0) | 2015.09.24 |
안드로이드] HttpClient Gradle 오류해결 (1) | 2015.09.16 |
Java, Swing] getOwner 이용 부모프레임 조정 (0) | 2015.06.27 |
Comments