1.undefined.用fread 实现,将任意文件中的数据显示到终端上。 2.用read和write实现文件拷贝;

文章展示了两个C语言程序,第一个演示了如何检查命令行参数并打开文件进行读取;第二个程序则读取指定文件的内容,并将其复制到新的文件中。
摘要由CSDN通过智能技术生成

1.

#include <stdio.h>
int main(int argc, const char *argv[])
{
	
	if(argc<2)
	{
		printf("命令行未传参,请输入文件名\n");
		return -1;
	}
	
	FILE* max = fopen(argv[1],"r");
	if(NULL ==max)
	{
		perror("fopen");
		return -1;
	}
	char c;
	while(fread(&c,1,sizeof(c),max) == sizeof(c))
	{
		printf("%c",c);
	}

	fclose(max);
	return 0;

2.

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

int main(int argc, const char *argv[])
{
	//读取01main.c文件中的数据
	int max = open("./01main.c", O_RDONLY);
	if(max <0)
	{
		perror("open");
		return -1;
	}
//新建一个空的文件并给权限
	int much = open("./put.txt",O_WRONLY | O_CREAT | O_TRUNC,0777);
	if(max < 0)
	{
		perror("open");
		return -1;
	}

	ssize_t len;
	char arr[1024] = "";
	//循环读取01main.c文件中的数据
	while(1)
	{
		bzero(arr,sizeof(arr));
		len = read(max,arr,sizeof(arr));
		if(0 == len)
		{
			printf("文件读取完成\n");
			break;
		}
		else if(0 > len)
		{
			printf("文件读取失败\n");
			break;
		}
		write(much,arr,len);
	}

	if(close(max) <0)
	{
		perror("close");
		return -1;
	}
	close(much);
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值