Linux下C语言判断文件是否存在
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
代码如下,
#include <unistd.h>
#include <stdio.h>
int main(void)
{
if (access("AA.txt", F_OK) == 0)
{
printf("AA.txt exists.\n");
}
else
{
printf("AA.txt not exists.\n");
}
return 0;
}
简要分析
使用unistd.h里的函数access()来判断文件是否存在,其原型如下,
// return 0 if OK; return −1 on error
int access(const char *pathname, int mode);
pathname就是文件名(可包含路径),mode的取值有以下几种,可以使用或操作(OR)来组合,
mode | Description |
---|---|
F_OK | 测试文件是否存在 |
R_OK | 测试文件是否有读权限 |
W_OK | 测试文件是否有写权限 |
X_OK | 测试文件是否有执行权限 |
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献14条内容
所有评论(0)