代码如下,

#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)来组合,

modeDescription
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 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐