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 | 31 |
Tags
- 기타 연주
- 핑거스타일
- mysql
- OpenCV
- ubuntu
- pytorch
- 채보
- pandas
- VS Code
- Docker
- 컨테이너
- 프로그래머스
- SSH
- 오류
- error
- C
- pip
- LIST
- C++
- Python
- C#
- Visual Studio
- Numpy
- windows forms
- Linux
- label
- YOLO
- JSON
- paramiko
- Selenium
Archives
- Today
- Total
기계는 거짓말하지 않는다
C 파일 존재 여부, File Exist Check 본문
C언어 파일 존재여부 확인
Linux
#include <unistd.h>
if( access( f_path, F_OK ) != -1 ) {
// 파일 존재
} else {
// 파일 없음
}
stat 구조체 이용
#include <sys/stat.h>
bool exist_file (char *file_name) {
struct stat buffer;
return (stat (file_name, &buffer) == 0);
}
FILE 구조체 이용
#include <stdio.h>
FILE *file;
if (file = fopen("temp.txt", "r"))
{
fclose(file);
printf("파일 존재\n");
}
else
{
printf("파일 없음\n");
}
'C' 카테고리의 다른 글
libcurl curl_easy_perform() failed: SSL peer certificate or SSH remote key was not OK 오류 (0) | 2023.05.27 |
---|---|
배열 최댓값, 최솟값 찾기 (분할 정복, Divide and Conquer) (0) | 2023.04.21 |
병합 정렬(Merge Sort) (0) | 2021.10.20 |
이진 검색 트리(Binary Search Tree) (0) | 2021.10.06 |
힙 정렬(Heap Sort) (0) | 2021.08.29 |
Comments