C byDreamy postedJul 02, 2019

C에서 파일 존재여부 체크 (check file exist)

?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

+ - Up Down Comment Print

방법1 (best)

#include <unistd.h>

if( access( fname, F_OK ) != -1 ) {
    // file exists
} else {
    // file doesn't exist
}


방법2

int exists(const char *fname)
{
    FILE *file;
    if ((file = fopen(fname, "r")))
    {
        fclose(file);
        return 1;
    }
    return 0;
}


방법3

int file_exist (char *filename)
{
  struct stat   buffer;   
  return (stat (filename, &buffer) == 0);
}

if (file_exist ("myfile.txt"))
{
  printf ("It exists\n");
}




나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소

Designed by sketchbooks.co.kr / sketchbook5 board skin

Sketchbook5, 스케치북5

Sketchbook5, 스케치북5

Sketchbook5, 스케치북5

Sketchbook5, 스케치북5