评论

收藏

[C++] LINUX下C语言用access()检查文件可读、可写权限

编程语言 编程语言 发布于:2021-08-06 15:45 | 阅读数:288 | 评论:0

有时还是很有必要的:
#include <unistd.h>
#include <fcntl.h>
int access(const char *pPath, int mode);   
F_OK:文件是否存在
R_OK:读
W_OK:写
X_OK:执行
#define LOCK_FILE "quantum6.lock"
  if (access(LOCK_FILE, W_OK) != -1)   
  {   
    printf("%s can write.\n", LOCK_FILE);   
  }   
  else  
  {   
    printf("%s can not write.\n", LOCK_FILE);   
  }

关注下面的标签,发现更多相似文章