openat函数的用法示例

《Unix环境高级编程》的第三章和第四章出现了大量的以at结尾的函数,如openat、fstatat等,书中只是粗略的说明了下,没有实际的例子让人很难懂。

int openat(int dirfd, const char *pathname, int flags, mode_t mode);

我初看的时候有如下几个疑问:

1、按函数原型明显是要给一个目录的文件描述符,可是打开目录用的事opendir返回的是一个DIR*的指针,哪来的int型的目录文件描述符;

2、open函数常用来打开一个文件,没见过用来打开目录的;

3、如果给一个文件描述符又会报错,这个变量到底该如何赋值?

几经周折,请教了网络上的大神后终于找到了这个函数的示例函数。

用法有两种,分别说明如下。

1、直接用open打开目录,用返回值作为openat的第一个参数的值,代码如下:

#include <stdio.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>

void creat_at(char *dir_path, char *relative_path)
{
	int dir_fd;
	int fd;
	int flags;
	mode_t mode;

	dir_fd = open(dir_path, O_RDONLY);
	if (dir_fd < 0) 
	{
		perror("open");
		exit(EXIT_FAILURE);
	}

	flags = O_CREAT | O_TRUNC | O_RDWR;
	mode = 0640;
	fd = openat(dir_fd, relative_path, flags, mode);
	if (fd < 0) 
	{
		perror("openat");
		exit(EXIT_FAILURE);
	}

	write(fd, "HELLO", 5);

	close(fd);
	close(dir_fd);
}

int main()
{
	creat_at("./open", "log.txt");
	return 0;
}

2、借用dirfd,将DIR*转换成int类型的文件描述符

函数原型如下:

int dirfd(DIR *dirp);

完整代码如下:

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <dirent.h>
#include <stdio.h>
#include <unistd.h>

int main()
{
	DIR *dir;
	int dirfd2;
	int fd;
	int n;

	dir = opendir("./open/chl");
	if(NULL == dir)
	{
		perror("open dir error");
		return -1;
	}
	dirfd2 = dirfd(dir);
	if(-1 == dirfd2)
	{
		perror("dirfd error");
		return -1;
	}

	fd = openat(dirfd2,"output.log",O_CREAT|O_RDWR|O_TRUNC);
	if(-1 == fd)
	{
		perror("opeat error");
		return -1;
	}
	n = write(fd,"Hello world!\n",15);
	
	close(fd);
	closedir(dir);

	return 0;

}

实际上感觉和open函数差不了多少,只是一个是字符串常量,一个是已经打开的文件描述符。




open函数openat函数都是用于打开文件的系统调用,但它们有一些区别。 1. 参数传递方式: - open函数接受一个文件路径名作为参数,该路径名可以是绝对路径或相对路径。 - openat函数需要传递一个已打开的目录文件描述符(dirfd)和一个相对于该目录的路径名作为参数。这种方式可以更加灵活地控制文件的打开位置。 2. 目录解析方式: - open函数的文件路径名会根据当前进程的工作目录进行解析。 - openat函数的路径名是相对于提供的目录文件描述符(dirfd)进行解析。 3. 安全性考虑: - open函数在解析文件路径时,依赖于进程的当前工作目录。这可能会导致安全性问题,特别是在多线程环境下,因为当前工作目录是共享的。 - openat函数提供了更安全的方式,可以避免依赖于进程的当前工作目录,而是通过提供目录文件描述符来指定相对路径。 使用示例: 以下是使用open函数openat函数打开文件的示例代码: 使用open函数打开文件: ```c #include <fcntl.h> int fd = open("/path/to/file", O_RDWR); if (fd == -1) { // 打开文件失败 } // 在文件中进行读写操作 ``` 使用openat函数打开文件: ```c #include <fcntl.h> #include <unistd.h> int dirfd = open("/path/to/directory", O_RDONLY); if (dirfd == -1) { // 打开目录失败 } int fd = openat(dirfd, "file.txt", O_RDONLY); if (fd == -1) { // 打开文件失败 } // 在文件中进行读操作 close(fd); close(dirfd); ``` 需要注意的是,使用完打开的文件描述符后,需要调用close函数关闭文件描述符,以释放资源。
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值