C语言-判断文件是否存在

2021-03-04 07:27

阅读:690

标签:mode   语言   rgba   nbsp   ==   return   file   str   const   

1 bool file_exist(const char *path)
2 {
3     struct stat st;
4  
5     return (stat(path, &st) == 0) && (!S_ISDIR(st.st_mode));
6 }

 

C语言-判断文件是否存在

标签:mode   语言   rgba   nbsp   ==   return   file   str   const   

原文地址:https://www.cnblogs.com/coolYuan/p/14360535.html


评论


亲,登录后才可以留言!