其他分享
首页 > 其他分享> > C读取文件(记事本能正常打开)

C读取文件(记事本能正常打开)

作者:互联网

C读取文件(记事本能正常打开)

	FILE * pFile;
	long long len;
	char *pbuf = NULL;
	string str;

	//read file
	pFile = fopen(filename, "rb");
	if (pFile == NULL)
	{
		perror("Open file error");
	}
	else
	{
		//read all data in buf
		fseek(pFile, 0, SEEK_END);
		len = ftell(pFile);
		fseek(pFile, 0, SEEK_SET);
		//apply memory
		pbuf = (char *)malloc(len + 1);
		memset(pbuf, 0, len + 1);//initialize pbuf
		fread(pbuf, len, 1, pFile);//read and display data
		//printf("show: %s.\n", pbuf);
		//printf("file.txt 的总大小 = %d 字节\n", len);
		str = pbuf;
	}
	//close file
	fclose(pFile);


曲直向前 发布了84 篇原创文章 · 获赞 63 · 访问量 9万+ 私信 关注

标签:文件,读取,pFile,pbuf,len,char,file,记事本
来源: https://blog.csdn.net/wsq119/article/details/103952485