Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 주식
- 현대통신
- Home Assistant
- 빅데이터분석기사
- 월패드
- 미국주식
- 공모주
- homebridge
- Python
- 파이썬
- Apple
- esp32
- raspberry pi
- 애플
- 매터
- 해외주식
- matter
- 홈네트워크
- 배당
- MQTT
- ConnectedHomeIP
- 국내주식
- SK텔레콤
- RS-485
- 나스닥
- 힐스테이트 광교산
- Espressif
- 라즈베리파이
- Bestin
- cluster
Archives
- Today
- Total
목록directory (1)
YOGYUI
C++::디렉터리 존재 여부 확인하기 (g++)
C++: Check Directory Existence (g++) #include bool check_dir_exist(const char *path) { bool exist = false; struct stat st; if(stat(path, &st) == 0) { if( ((st.st_mode) & S_IFMT) == S_IFDIR ) { exist = true; } } return exist; } 헤더파일 를 include한 뒤 stat 함수 호출 int stat(const char *path, struct stat *buf); path: 경로명 문자열 포인터 (입력) buf: 경로에 대한 정보가 담긴 stat 구조체 (출력) 리턴값: 0 = 성공, -1 = 실패 (실패 이유는 다양하며, errno..
Software/C, C++
2022. 7. 25. 19:32