https://www.cnblogs.com/starrys/p/12008562.html
https://blog.csdn.net/Edward_Asia/article/details/124494079

文件打开与关闭

https://blog.csdn.net/weixin_68278653/article/details/130836626

读写

一、二进制文件

二、文本文件

回车与换行符:https://blog.csdn.net/wangsh217/article/details/11031089/

目录操作

https://blog.csdn.net/qq_64928278/article/details/131945858

其它

#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <stdio.h>
//创建目录名(先判断存不存在)
int file_exist(const char* path){
    DIR *dp;
    if ((dp = opendir(path)) == NULL){
        mkdir(path, S_IRWXU);
        //printf("path = %s\n", path);
        return 0;
    }
    else{
        closedir(dp);
        return 1;
    }
}

int main(int argc, char* argv[]){
    file_exist(argv[1]);
    return 0;
}

fd操作

分类: file

0 条评论

发表回复

您的电子邮箱地址不会被公开。