디렉토리가 있는지 어떻게 확인할 수 있습니까? C에서 Linux에 디렉토리가 있는지 어떻게 확인할 수 있습니까? 실패시 다음을 사용 opendir()하고 확인할 수 있습니다 ENOENT == errno. #include #include DIR* dir = opendir("mydir"); if (dir) { /* Directory exists. */ closedir(dir); } else if (ENOENT == errno) { /* Directory does not exist. */ } else { /* opendir() failed for some other reason. */ } 다음 코드를 사용하여 폴더가 있는지 확인하십시오. Windows 및 Linux 플랫폼 모두에서 작동합니다. #include..