IO 1.4

该C程序展示了如何使用`fork`函数和文件描述符进行I/O操作,将./1.txt的内容分为两部分,分别由子进程进行复制到./copy.txt中。
摘要由CSDN通过智能技术生成
#include<head.h>
int main(int argc, const char *argv[])
{
	int fd=open("./1.txt",O_RDONLY);
	if(fd<0)
	{
		perror("open");
		return -1;
	}
	printf("open success\n");
	int fp=open("./copy.txt",O_WRONLY|O_CREAT|O_TRUNC,0777);
	if(fp<0)
	{
		perror("open");
		return -1;
	}
	struct stat buf;
	if(stat("./1.txt",&buf)<0)
	{
		perror("stat");
		return -1;
	}

	pid_t cpid=fork();
	if(cpid>0)
	{
		lseek(fd,0,SEEK_SET);
		lseek(fp,0,SEEK_SET);

		char c=0;
		for(int i=0;i<buf.st_size/2;i++)
		{
			read(fd,&c,sizeof(c));
			write(fp,&c,sizeof(c));
		}
		printf("拷贝完毕\n");
	}
	else if(0==cpid)
	{
		lseek(fd,buf.st_size/2,SEEK_SET);
		lseek(fp,buf.st_size/2,SEEK_SET);

		char c=0;
		for(int i=buf.st_size/2;i<buf.st_size;i++)
		{
			read(fd,&c,sizeof(c));
			write(fp,&c,sizeof(c));
		}
		printf("拷贝完毕\n");
	}
	else
	{
		perror("fork");
		return -1;
	}
	close(fd);
	if(close(fd)<0)
	{
		perror("close");
		return -1;
	}
	close(fp);
	if(close(fp)<0)
	{
		perror("close");
		return -1;
	}
	printf("close success\n");
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值