Linux C语言 36-文件处理补充

Linux C语言 36-文件处理补充

本节关键字:C语言 文件操作,文件处理,文件创建,文件信息,文件删除,目录创建,目录信息,目录遍历,目录递归遍历
相关C库函数:access、mkdir、opendir、chdir、readdir、closedir、rm、stat等

声明:时间有限,目前仅将相关库函数记录下来,后期慢慢完善用法及例程,感兴趣的小伙伴可以先关注,有更新就会提醒哦~

判断文件是否存在

#include <unistd.h>
int access(const char *pathname, int mode);

创建目录

#include <sys/stat.h>
#include <sys/types.h>
int mkdir(const char *pathname, mode_t mode);

获取目录的文件描述符

#include <sys/types.h>
#include <dirent.h>
int dirfd(DIR *dirp);

打开目录

#include <sys/types.h>
#include <dirent.h>
DIR *opendir(const char *name);
DIR *fdopendir(int fd);

读取/遍历目录

#include <dirent.h>
struct dirent 
{ino_t          d_ino;       /* inode number */off_t          d_off;       /* offset to the next dirent */unsigned short d_reclen;    /* length of this record */unsigned char  d_type;      /* type of file; not supportedby all file system types */char           d_name[256]; /* filename */
};
int readdir(unsigned int fd, struct old_linux_dirent *dirp, unsigned int count);
struct dirent *readdir(DIR *dirp);
int readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result);

进入子目录

#include <unistd.h>
int chdir(const char *path);
int fchdir(int fd);

关闭目录

#include <sys/types.h>
#include <dirent.h>
int closedir(DIR *dirp);

删除文件/目录

#include <stdio.h>
int remove(const char *pathname);

目录指针操作

#include <sys/types.h>
#include <dirent.h>
void rewinddir(DIR *dirp);#include <dirent.h>
int scandir(const char *dirp, struct dirent ***namelist,int (*filter)(const struct dirent *),int (*compar)(const struct dirent **, const struct dirent **));
int alphasort(const void *a, const void *b);
int versionsort(const void *s, const void *b);#include <dirent.h>
void seekdir(DIR *dirp, long offset);#include <dirent.h>
long telldir(DIR *dirp);

例程

#define _SVID_SOURCE
/* print files in current directory in reverse order */
#include <dirent.h>
int main(void)
{struct dirent **namelist;int n;n = scandir(".", &namelist, 0, alphasort);if (n < 0){perror("scandir");}else {while (n--) {printf("%s\n", namelist[n]->d_name);free(namelist[n]);}free(namelist);}return 0;
}

获取文件/目录信息

#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
struct stat  
{   dev_t       st_dev;     /* ID of device containing file - 文件所在设备的ID*/  ino_t       st_ino;     /* inode number - 节点号*/    mode_t      st_mode;    /* protection - 保护模式?*/    nlink_t     st_nlink;   /* number of hard links - 链向此文件的连接数(硬连接)*/    uid_t       st_uid;     /* user ID of owner - 所有者的用户ID*/    gid_t       st_gid;     /* group ID of owner - 所有者的组ID*/    dev_t       st_rdev;    /* device ID (if special file) - 设备号,针对设备文件*/    off_t       st_size;    /* total size, in bytes - 文件大小,字节为单位*/    blksize_t   st_blksize; /* blocksize for filesystem I/O - 系统块的大小*/    blkcnt_t    st_blocks;  /* number of blocks allocated - 文件所占块数*/    time_t      st_atime;   /* time of last access - 最后访问时间*/    time_t      st_mtime;   /* time of last modification -最近修改时间*/    time_t      st_ctime;   /* time of last status change - 上次状态更改的时间*/    
};
int stat(const char *path, struct stat *buf);
int fstat(int fd, struct stat *buf);
int lstat(const char *path, struct stat *buf);S_ISREG(m)  is it a regular file?
S_ISDIR(m)  directory?
S_ISCHR(m)  character device?
S_ISBLK(m)  block device?
S_ISFIFO(m) FIFO (named pipe)?
S_ISLNK(m)  symbolic link? (Not in POSIX.1-1996.)
S_ISSOCK(m) socket? (Not in POSIX.1-1996.)S_IFMT     0170000   bit mask for the file type bit fields
S_IFSOCK   0140000   socket
S_IFLNK    0120000   symbolic link
S_IFREG    0100000   regular file
S_IFBLK    0060000   block device
S_IFDIR    0040000   directory
S_IFCHR    0020000   character device
S_IFIFO    0010000   FIFO
S_ISUID    0004000   set UID bit
S_ISGID    0002000   set-group-ID bit (see below)
S_ISVTX    0001000   sticky bit (see below)
S_IRWXU    00700     mask for file owner permissions
S_IRUSR    00400     owner has read permission
S_IWUSR    00200     owner has write permission
S_IXUSR    00100     owner has execute permission
S_IRWXG    00070     mask for group permissions
S_IRGRP    00040     group has read permission
S_IWGRP    00020     group has write permission
S_IXGRP    00010     group has execute permission
S_IRWXO    00007     mask for permissions for others (not in group)
S_IROTH    00004     others have read permission
S_IWOTH    00002     others have write permission
S_IXOTH    00001     others have execute permission

例程

#include <sys/types.h>
#include <sys/stat.h>
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{struct stat sb;if (argc != 2) {fprintf(stderr, "Usage: %s <pathname>\n", argv[0]);exit(EXIT_FAILURE);}if (stat(argv[1], &sb) == -1) {perror("stat");exit(EXIT_SUCCESS);}printf("File type:                ");switch (sb.st_mode & S_IFMT) {case S_IFBLK:  printf("block device\n");            break;case S_IFCHR:  printf("character device\n");        break;case S_IFDIR:  printf("directory\n");               break;case S_IFIFO:  printf("FIFO/pipe\n");               break;case S_IFLNK:  printf("symlink\n");                 break;case S_IFREG:  printf("regular file\n");            break;case S_IFSOCK: printf("socket\n");                  break;default:       printf("unknown?\n");                break;}printf("I-node number:            %ld\n", (long) sb.st_ino);printf("Mode:                     %lo (octal)\n",(unsigned long) sb.st_mode);printf("Link count:               %ld\n", (long) sb.st_nlink);printf("Ownership:                UID=%ld   GID=%ld\n",(long) sb.st_uid, (long) sb.st_gid);printf("Preferred I/O block size: %ld bytes\n",(long) sb.st_blksize);printf("File size:                %lld bytes\n",(long long) sb.st_size);printf("Blocks allocated:         %lld\n",(long long) sb.st_blocks);printf("Last status change:       %s", ctime(&sb.st_ctime));printf("Last file access:         %s", ctime(&sb.st_atime));printf("Last file modification:   %s", ctime(&sb.st_mtime));exit(EXIT_SUCCESS);
}

读取链接文件

#include <unistd.h>
ssize_t readlink(const char *path, char *buf, size_t bufsiz);

声明:时间有限,目前仅将相关库函数记录下来,后期慢慢完善用法及例程,感兴趣的小伙伴可以先关注,有更新就会提醒哦~

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/186647.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

[cocos creator]EditBox,editing-return事件,清空输入框

需求&#xff1a; 监听EditBox&#xff0c;editing-return 回车事件&#xff0c;在输入框内点击回车后&#xff0c;发送内容&#xff0c;并清空输入框 问题&#xff1a; 设置node.getComponent(EditBox).string ; 没有效果 解决办法&#xff1a; //设置string 为空 this.v…

应用程序APP制作用Vue3CreateApp打包有什么优势?有哪些好处?

在当代的前端开发领域&#xff0c;Vue.js作为一个领先的JavaScript框架&#xff0c;一直处于技术革新和发展的前沿。Vue3作为该框架的最新版本&#xff0c;带来了更多的新特性和优化。在这些新特性中&#xff0c;createApp方法是一个非常值得关注的变化。对于开发者而言&#x…

osg demo汇总

1.example_osganimate 演示了路径动画的使用&#xff08;AnimationPath、AnimationPathCallback&#xff09;&#xff0c;路径动画回调能够做用在Camera、CameraView、MatrixTransform、PositionAttitudeTransform等四种类型的节点上。 演示了osgSim::OverlayNode的使用node 2…

[操作系统] 大厂必问~虚拟内存系列

文章目录 4.1 什么是虚拟内存(Virtual Memory)?4.2 局部性原理4.3 虚拟存储器4.4 虚拟内存的技术实现4.5 页面置换算法OPT 页面置换算法&#xff08;最佳页面置换算法&#xff09;FIFO&#xff08;First In First Out&#xff09; 页面置换算法&#xff08;先进先出页面置换算…

MyBatis教程之逆向工程(十一)

正向工程&#xff1a;先创建Java实体类&#xff0c;由框架负责根据实体类生成数据库表。Hibernate是支持正向工程 的。逆向工程&#xff1a;先创建数据库表&#xff0c;由框架负责根据数据库表&#xff0c;反向生成如下资源&#xff1a; 1.Java实体类 2.Mapper…

使用easyExcel框架报错:服务器缺少字体

后台服务使用easyExcel框架生成表格&#xff0c;但是生成的时候报如下的错误&#xff1a; 这种报错其实就是部署服务的服务器缺少字体&#xff0c;正确的方法是安装字体。需要注意的是&#xff0c;测试环境服务器与生产环境服务器的在配置版本上可能存在差异&#xff0c;因此需…

初识Java 18-6 泛型

目录 潜在类型机制 支持潜在类型机制的语言 Python的潜在类型机制 C的潜在类型机制 Java中的直接潜在类型机制 潜在类型机制的替代方案 反射 将方法应用于序列中的每个元素 Java 8的潜在类型机制&#xff08;间接实现&#xff09; 潜在类型机制的使用例&#xff08;S…

『 MySQL数据库 』CRUD之UD,表的数据更新(修改)及删除

文章目录 &#x1f969; Update (更新/修改) &#x1f996;&#x1f95a; 修改单行数据的某个字段内的数据 &#x1f995;&#x1f95a; 配合LIMIT分页与ORDER BY 对符合条件的多条数据进行修改 &#x1f995;&#x1f95a; 对整表的某个数据字段进行修改 &#x1f995; &#…

MySQL--锁

锁 锁是mysql在并发访问时&#xff0c;解决数据访问一致性、有效性的一种机制 mysq中的锁&#xff0c;按照锁的粒度分&#xff0c;分为以下三类&#xff1a; 全局锁&#xff1a;锁定数据库中的所有表 表级锁&#xff1a;每次操作锁住整张表 行级锁&#xff1a;每次操作锁住对…

Android 架构实战MVI进阶

MVI架构的原理和流程 MVI架构是一种基于响应式编程的架构模式&#xff0c;它将应用程序分为四个核心组件&#xff1a;模型&#xff08;Model&#xff09;、视图&#xff08;View&#xff09;、意图&#xff08;Intent&#xff09;和状态&#xff08;State&#xff09;。 原理&…

【AntDB数据库】国产数据库崛起之狂飙猛进的互联网技术

中国作为人口大国&#xff0c;也是重要的人才资源大国&#xff0c;人口大国带来了国外数据库厂商在世界其他国家不曾出现的高复杂高密度的需求场景&#xff0c;而人才资源大国则让我们在互联网尤其是移动互联网方面奋起直追&#xff0c;甚至达到了全球领先的水平&#xff0c;进…

JS的原生函数

JS的原生函数&#xff0c;包括&#xff1a;String&#xff08;&#xff09;、Number&#xff08;&#xff09;、Boolean&#xff08;&#xff09;、Array&#xff08;&#xff09;、Object&#xff08;&#xff09;、Function&#xff08;&#xff09;、RegExp&#xff08;&…

通过navicat工具将excel文件导入数据库的表中

文章目录 1.navicat可视化工具2. 导入文件 1.navicat可视化工具 这里使用的是navicat数据库可视化工具&#xff0c;不是直接通过数据库指令导入的 前提是连接好数据库&#xff0c;建立好表&#xff0c;如下图&#xff0c;test为连接名&#xff0c;随便起&#xff0c;data为数据…

学习程序员必知必会的基础算法(收藏)

近年来学习python的程序员愈来愈多&#xff0c;有的同学选择了python培训机构&#xff0c;也有的人觉得自己天赋好选择了自学不管大家怎么去学习&#xff0c;在学习python基础的过程中&#xff0c;肯定离不开的就是基础算法&#xff0c;今天就为大家介绍几大学习中的基础算法。…

Arkts http数据请求

使用Arkts功能需要申请ohos.permission.INTERNET权限。即在module.json5文件中申明网络访问权限&#xff1a;ohos.permission.INTERNET。如下 {"module" : {"requestPermissions":[{"name": "ohos.permission.INTERNET"}]} } Arkts …

LLM面面观之Prefix LM vs Causal LM

1. 背景 关于Prefix LM和Causal LM的区别&#xff0c;本qiang在网上逛了一翻&#xff0c;发现多数客官只给出了结论&#xff0c;但对于懵懵的本qiang&#xff0c;结果仍是懵懵... 因此&#xff0c;消遣了多半天&#xff0c;从原理及出处&#xff0c;交出了Prefix LM和Causal …

Python requests请求响应以流stream的方式打印输出

如果你使用的请求库是requests&#xff0c;那么你必须了解的大模型里的请求怎么响应式的接收并打印出来的。 这里给大家写一下正式的书写方式: import requestsurl "http://localhost:8080/stream"payload {} headers {}response requests.request("GET&q…

回文链表,剑指offer 27,力扣 61

目录 题目&#xff1a; 我们直接看题解吧&#xff1a; 解题方法&#xff1a; 难度分析&#xff1a; 审题目事例提示&#xff1a; 解题分析&#xff1a; 解题思路&#xff08;数组列表双指针&#xff09;&#xff1a; 代码说明补充&#xff1a; 代码实现&#xff1a; 代码实现&a…

JS中的类型与值

1、类型 我们这样来定义类型&#xff1a;类型是值的内部特征&#xff0c;它定义了值的行为&#xff0c;以使其区别于其他值 1.1、内置类型 JS有其中内置类型&#xff1a;null、undefined、boolean、number、string、object、symbol&#xff08;ES6新增&#xff09;&#xff…

智安网络|发现未知风险,探索渗透测试的奥秘与技巧

在当今信息时代&#xff0c;网络安全已成为组织和个人面临的重大挑战。为了保护网络系统的安全&#xff0c;渗透测试成为一种重要的手段。 一、渗透测试的基本原理 渗透测试是通过模拟黑客攻击的方式&#xff0c;对目标系统进行安全评估。其基本原理是模拟真实攻击者的思维和行…