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 | 31 |
Tags
- 공모주
- 퀄컴
- homebridge
- 힐스테이트 광교산
- 엔비디아
- 매터
- 국내주식
- MQTT
- 월패드
- 애플
- 티스토리챌린지
- 홈네트워크
- 파이썬
- Python
- matter
- raspberry pi
- 배당
- 해외주식
- Espressif
- RS-485
- 미국주식
- 코스피
- 현대통신
- esp32
- ConnectedHomeIP
- Apple
- 오블완
- Home Assistant
- Bestin
- 나스닥
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