文件操作--系统调用 open/read/write

打开文件 open

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

int main1()
{
	// 第一个参数:要打开的文件名
	// 第二个参数:打开方式
	int fd = open("man1.txt", O_RDONLY);
	if (-1 == fd)
	{
		printf ("打开文件失败\n");
		printf ("errno : %d\n", errno);
		perror ("打开man1.txt文件失败");   // 打印错误信息,参数是自己的相关提示
		return -1;
	}
	
	printf ("成功\n");

	
	// 关闭文件,参数是文件描述符
	close(fd);
	return 0;
}

// 文件描述符:打开文件的时候返回的文件描述符默认使用当前可用的最小的文件描述符
int main()
{
	close(1);
	// 文件不存在,创建一个文件, 文件的权限由第三个参数决定,最终的权限:mode & (~umask)
	int fd = open("abc", O_WRONLY | O_CREAT, 0777);
	if (-1 == fd)
	{
		printf ("打开文件失败\n");
		printf ("errno : %d\n", errno);
		perror ("打开man1.txt文件失败");   // 打印错误信息,参数是自己的相关提示
		return -1;
	}
	
	printf ("成功, fd = %d\n", fd);

	fflush(stdout);
	close(fd);
	return 0;
}











读取文件 read

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

#define SIZE 1024

int main1()
{
	int fd = open("test.c", O_RDONLY);
	if (-1 == fd)
	{
		perror("打开test.c文件失败");
		return -1;
	}
	
	char buf[10];
	ssize_t ret = read(fd, buf, 10);
	if (-1 == ret)
	{
		perror("读失败");
		return -1;
	}
	
	printf ("读到的字节数:%ld, 读到的内容:%s\n", ret, buf);
	
	
	
	
	close(fd);
	return 0;
}

int main2()
{
	int fd = open("test.c", O_RDONLY);
	if (-1 == fd)
	{
		perror("打开test.c文件失败");
		return -1;
	}
	
	char buf[SIZE+1];
	int count = 0;
	int ret = 0;
	while ((ret = read(fd, buf, SIZE)) != 0)
	{
		if (-1 == ret)
		{
			perror("读失败");
			return -1;
		}
		
		count++;
		buf[ret] = '\0';
		printf ("%s", buf);
	}
	
	printf ("文件读结束, 读了 %d 次\n", count);	
	
	close(fd);
	return 0;
}


// 读一个完整的大数据
int main()
{
	int fd = open("test.c", O_RDONLY);
	if (-1 == fd)
	{
		perror("打开test.c文件失败");
		return -1;
	}
	
	char buf[SIZE+1];
	char *p = buf;
	
	int count = SIZE;
	while (count)
	{
		int ret = read(fd, p, count);
		if (-1 == ret)
		{
			perror("读取数据失败");
			return -1;
		}
		
		printf ("ret = %d\n", ret);
		count -= ret;
		p += ret;
	}
	
	buf[SIZE] = 0;
	printf ("%s",buf);
	close(fd);
	return 0;
}








写入文件 write

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

#define SIZE 1024
int main1()
{
	int fd = open("tmp.txt", O_WRONLY|O_CREAT);
	if (-1 == fd)
	{
		perror("打开test.c文件失败");
		return -1;
	}
	
	ssize_t ret = write(fd, "hello world", 11);
	if (-1 == ret)
	{
		perror("写入失败");
		return -1;
	}
	
	printf ("写入成功,写入的字节数:%ld\n", ret);

	close(fd);
	return 0;
}

int main()
{
	int fd = open("tmp.txt", O_WRONLY|O_CREAT | O_APPEND, 0766);
	if (-1 == fd)
	{
		perror("打开tmp.txt文件失败");
		return -1;
	}
	
	char buf[SIZE];
	while (1)
	{
		fgets(buf, SIZE, stdin);
		
		if (0 == strncmp(buf, "end", 3))
			break;
		
		ssize_t ret = write(fd, buf, strlen(buf));
		if (-1 == ret)
		{
			perror("写入失败");
			return -1;
		}
	}
	close(fd);
	return 0;
}

int main3()
{
	int fd1 = open("1.ppt", O_RDONLY);
	int fd2 = open("2.ppt", O_WRONLY|O_CREAT, 0766);
	if (-1 == fd1 || -1 == fd2)
	{
		perror("打开文件失败");
		return -1;
	}
	
	char buf[SIZE];
	ssize_t ret;
	while((ret = read(fd1, buf, SIZE)) != 0)
	{
		if (-1 == ret)
		{
			perror("读失败");
			break;
		}
		
		ret = write(fd2, buf, ret);
		if (-1 == ret)
		{
			perror("写失败");
			break;
		} 
	}
	 
	
	
	close(fd1);
	close(fd2);
	return 0;
}


int main4()
{
	// int fd = open("tmp.txt", O_WRONLY|O_CREAT | O_TRUNC, 0766);
	int fd = open("tmp.txt", O_RDONLY);
	if (-1 == fd)
	{
		perror("打开tmp.txt文件失败");
		return -1;
	}
	
	int a;
	
	ssize_t ret = read(fd, &a, sizeof(int));
	
	printf ("a = %d\n", a);
	
	
	close(fd);
	return 0;
}
























猜你喜欢

转载自blog.csdn.net/weixin_43664746/article/details/85229416