首页 > 系统相关 >Android C++系列:Linux文件系统(二)

Android C++系列:Linux文件系统(二)

时间:2024-07-20 20:54:49浏览次数:19  
标签:const name int C++ st char Linux Android include

1. VFS虚拟文件系统

Linux支持各种各样的文件系统格式,如ext2、ext3、reiserfs、FAT、NTFS、iso9660 等等,不同的磁盘分区、光盘或其它存储设备都有不同的文件系统格式,然而这些文件系统 都可以mount到某个目录下,使我们看到一个统一的目录树,各种文件系统上的目录和文件 我们用ls命令看起来是一样的,读写操作用起来也都是一样的,这是怎么做到的呢?Linux 内核在各种不同的文件系统格式之上做了一个抽象层,使得文件、目录、读写访问等概念成 为抽象层的概念,因此各种文件系统看起来用起来都一样,这个抽象层称为虚拟文件系统 (VFS,Virtual Filesystem)。这一节我们介绍运行时文件系统在内核中的表示。

在这里插入图片描述

1.1 dup/dup2

#include <unistd.h>
int dup(int oldfd);
int dup2(int oldfd, int newfd);

dup和dup2都可用来复制一个现存的文件描述符,使两个文件描述符指向同一个file结 构体。如果两个文件描述符指向同一个file结构体,File Status Flag和读写位置只保存一份在file结构体中,并且file结构体的引用计数是2。如果两次open同一文件得到两个文件 描述符,则每个描述符对应一个不同的file结构体,可以有不同的File Status Flag和读写 位置。请注意区分这两种情况。

#include <unistd.h> 
#include <sys/stat.h> 
#include <fcntl.h> 
#include <stdio.h> 
#include <stdlib.h> 
#include <string.h>
int main(void) {
	int fd, save_fd;
	char msg[] = "This is a test\n";
	fd = open("somefile", O_RDWR|O_CREAT, S_IRUSR|S_IWUSR); 
	if(fd<0) {
		perror("open");
		exit(1); 
	}
	save_fd = dup(STDOUT_FILENO);
	dup2(fd, STDOUT_FILENO);
	close(fd);
	write(STDOUT_FILENO, msg, strlen(msg)); dup2(save_fd, STDOUT_FILENO); 			
	write(STDOUT_FILENO, msg, strlen(msg)); close(save_fd);
	return 0; 
}

示例:

在这里插入图片描述

2. 常用文件操作

2.1 stat

#include <sys/types.h> #include <sys/stat.h> #include <unistd.h>
int stat(const char *path, struct stat *buf); int fstat(int fd, struct stat *buf);
int lstat(const char *path, struct stat *buf);
struct stat {
	dev_t  st_dev; /* ID of device containing file */
	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 */
	gid_t st_gid;/* group ID of owner */
	dev_t st_rdev;/* device ID (if special file) */
	off_t st_size;/* total size, in bytes */
	blksize_t st_blksize;/* blocksize for file system I/O */
	blkcnt_t st_blocks;/* number of 512B 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 */

stat既有命令也有同名函数,用来获取文件Inode里主要信息,stat 跟踪符号链 接,lstat不跟踪符号链接

stat里面时间辨析

atime(最近访问时间): mtime(最近更改时间):指最近修改文件内容的时间 ctime(最 近改动时间):指最近改动Inode的时间 ## access

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

按实际用户ID和实际组ID测试,跟踪符号链接 参数mode

R_OK 是否有读权限
W_OK 是否有写权限
X_OK 是否有执行权限
F_OK 测试一个文件是否存在

实际用户ID: 有效用户ID:sudo执行时,有效用户ID是root,实际用户ID是xingwen- peng

2.1 chmod

#include <sys/stat.h>
int chmod(const char *path, mode_t mode); 
int fchmod(int fd, mode_t mode);

2.2 chown

#include <unistd.h>
int chown(const char *path, uid_t owner, gid_t group); 
int fchown(int fd, uid_t owner, gid_t group);
int lchown(const char *path, uid_t owner, gid_t group);

chown使用时必须拥有root权限。

在这里插入图片描述

2.3 utime

2.4 truncate

#include <unistd.h> #include <sys/types.h>
int truncate(const char *path, off_t length); 
int ftruncate(int fd, off_t length);

2.4 link

2.4.1 link

创建一个硬链接

当rm删除文件时,只是删除了目录下的记录项和把inode硬链接计数减1,当硬链接计数 减为0时,才会真正的删除文件。

#include <unistd.h>
int link(const char *oldpath, const char *newpath);
  • 硬链接通常要求位于同一文件系统中,POSIX允许夸文件系统
  • 符号链接没有文件系统限制
  • 通常不允许创建目录的硬链接,某些unix系统下超级用户可以创建目录的硬链
  • 创建目录项以及增加硬链接计数应当是一个原子操作
2.4.2 symlink
 int symlink(const char *oldpath, const char *newpath)
2.4.3 readlink

读符号链接所指向的文件名字,不读文件内容

 ssize_t readlink(const char *path, char *buf, size_t bufsiz)
2.4.4 unlink
int unlink(const char *pathname)
  1. 如果是符号链接,删除符号链接
  2. 如果是硬链接,硬链接数减1,当减为0时,释放数据块和inode
  3. 如果文件硬链接数为0,但有进程已打开该文件,并持有文件描述符,则等该进程关闭该文件时,kernel才真正 去删除该文件
  4. 利用该特性创建临时文件,先open或creat创建一个文件,马上unlink此文件

2.5 rename

文件重命名

#include <stdio.h>
int rename(const char *oldpath, const char *newpath);

2.6 chdir

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

改变当前进程的工作目录。

2.7 getcwd

获取当前进程的工作目录

#include <unistd.h>
char *getcwd(char *buf, size_t size);

2.8 pathconf

#include <unistd.h>
long fpathconf(int fd, int name); 
long pathconf(char *path, int name);

3. 目录操作

3.1 mkdir

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

3.2 rmdir

#include <unistd.h>
int rmdir(const char *pathname);

3.3 opendir/fdopendir

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

3.4 readdir

#include <dirent.h>
struct dirent *readdir(DIR *dirp);

readdir每次返回一条记录项,DIR*指针指向下一条记录项

3.5 rewinddir

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

把目录指针恢复到目录的起始位置。

3.6 telldir/seekdir

#include <dirent.h>
long telldir(DIR *dirp);

#include <dirent.h>
void seekdir(DIR *dirp, long offset);

3.7 closedir

#include <sys/types.h> 
#include <dirent.h>

int closedir(DIR *dirp);

3.8 递归遍历目录

递归列出目录中的文件列表

#include <sys/types.h> 
#include <sys/stat.h> 
#include <unistd.h> 
#include <dirent.h> 
#include <stdio.h> 
#include <string.h>
#define MAX_PATH 1024
/* dirwalk: apply fcn to all files in dir */ 
void dirwalk(char *dir, void (*fcn)(char *)) {
	char name[MAX_PATH]; 
	struct dirent *dp; 
	DIR *dfd;
	if ((dfd = opendir(dir)) == NULL) { 
		fprintf(stderr, "dirwalk: can't open %s\n",dir);
		return;
	}
	while ((dp = readdir(dfd)) != NULL){ 
		if (strcmp(dp->d_name, ".") == 0|| strcmp(dp->d_name, "..") == 0)
			continue; /* skip self and parent */
		if (strlen(dir)+strlen(dp->d_name)+2 > sizeof(name))
			fprintf(stderr, "dirwalk: name %s %s too long\n", dir, dp->d_name);
		else {
			sprintf(name, "%s/%s", dir, dp->d_name); (*fcn)(name);
		} 
	}
	closedir(dfd); 
}
/* fsize: print the size and name of file "name" */ 
void fsize(char *name)
{
struct stat stbuf;
if (stat(name, &stbuf) == -1) {
fprintf(stderr, "fsize: can't access %s\n", name); return;
}
if ((stbuf.st_mode & S_IFMT) == S_IFDIR)
dirwalk(name, fsize);
printf("%8ld %s\n", stbuf.st_size, name);
}
int main(int argc, char **argv) {
	if (argc == 1) /* default: current directory */ 
		fsize(".");
	else
		while (--argc > 0)
			fsize(*++argv); 
	return 0;
}

然而这个程序还是不如ls -R健壮,它有可能死循环,思考一下什么情况会导致死循环。

4. 小结

本文介绍了Virtual Filesystem(VFS)虚拟文件系统及其原理,以及stat、chmod、chown、utime等常用文件操作函数以及mkdir、rmdir、readdir等目录操作函数。

标签:const,name,int,C++,st,char,Linux,Android,include
From: https://blog.csdn.net/sjw890821sjw/article/details/140428752

相关文章

  • Android C++系列:函数返回值注意事项
    1.背景函数返回值就是使用return语句终止正在执行的函数,看是很简单的问题有什么说的呢?因为越是简单的问题里面越是有一些不易发现的坑。比如在循环中使用return语句:boolfindChar(conststring&str,constcharc){autosize=str.size();for(decltype(size......
  • 使用SSH工具连接Linux
    一、SSH连接工具介绍由于我们在企业开发时,Linux服务器一般都是在远程的机房部署的,我们要操作服务器,不会每次都跑到远程的机房里面操作,而是会直接通过SSH(SecureShell)连接工具进行连接操作。  SSH(SecureShell),是建立在应用层基础上的安全协议。常用的SSH......
  • 【C++BFS 回溯】756. 金字塔转换矩阵
    本文涉及知识点C++BFS算法C++回溯LeetCode756.金字塔转换矩阵你正在把积木堆成金字塔。每个块都有一个颜色,用一个字母表示。每一行的块比它下面的行少一个块,并且居中。为了使金字塔美观,只有特定的三角形图案是允许的。一个三角形的图案由两个块和叠在上面的单......
  • VMWare安装Linux
    一、Linux发行版本和虚拟机介绍Linux系统的版本分为两种,分别是:内核版和发行版。1).内核版由LinusTorvalds及其团队开发、维护免费、开源负责控制硬件2).发行版基于Linux内核版进行扩展由各个Linux厂商开发、维护有收费版本和免费版本  我......
  • GESP C++ 二级真题(2023年12月)T1 小杨做题
    问题描述:为了准备考试,小杨每天都要做题。第一天做了a道题;第二天做了b道题;从第三天起,小杨每天做的题目数量是前两天的总和。此外,小杨还规定当自己某一天做了大于或等于m题时,接下来的日子,他就不做题了。请问到了第n天,小杨总共做了多少道题?输入描述:总共4行。第一行一个整数a,......
  • 使用GDAL(C++库)从末尾行开始向上读取图像数据
    使用GDAL(C++库)从末尾行读取图像数据OpenCV等图像库默认的读取方式都是从第一行开始,逐行读取数据(自顶向下),填充到内存缓冲区;对于某些特殊应用,需要反行序读取(从末尾行读到起始行)的图像数据结果。GDAL提供了灵活的栅格数据读取方式RasterIO,下面介绍RasterIO的调用方式,以及如何......
  • 在VS2022中通过Nuget将vcpkg环境集成/卸载到c++项目
    在VS2022中通过Nuget将vcpkg环境集成/卸载到c++项目vcpkg是微软和C++社区维护的免费开源C/C++包管理器。利用它,可以一条命令编译安装用户所需的库;提供CMake配置文件;并且对于Windows开发者,在VisualStudio中集成后还可以自动链接静态库,非常方便易用。一般而言,开发者仅需要......
  • Android开发 - xmlns命名空间中tools详解
    xmlns:tools是什么命名空间tools可以告诉AndroidStudio,哪些属性在运行的时候是被忽略的,只在设计布局的时候有效。比如我们要让android:text属性只在布局预览中有效。tools可以覆盖android的所有标准属性,将android:换成tools:即可。同时在运行的时候就连tools:本身都是被忽略......
  • Linux安装MySQL
    一、MySQL安装对于MySQL数据库的安装,我们将要使用第二种安装方式rpm进行安装。那么首先我们了解一下什么是RPM?RPM:全称为Red-HatPackageManager,RPM软件包管理器,是红帽Linux用于管理和安装软件的工具。MySQL数据库的安装,主要的步骤如下:......
  • kali linux安装
    相信许多小伙伴在初次认识网路安全的时候,一定听过kalilinux这个名字。那么今天让小编带你搞定kalilinux的安装。1.首先打开kali官网,网址:KaliLinux|PenetrationTestingandEthicalHackingLinuxDistribution打开之后如图:2.选择download如图:3.在打开的页面里下......