码迷,mamicode.com
首页 > 其他好文 > 详细

从一个文件中读取数据到内存,然后再把内存中的数据写入另外一个文件

时间:2018-10-19 13:58:47      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:文件   相对   write   读取数据   pad   有关   pre   argv   close   

//从一个文件中读取数据到内存,然后再把内存中的数据写入另外一个文件

#include "stdafx.h"
#include "stdlib.h"

int main(int argc, char* argv[])
{

FILE* fp;
FILE* fp2;
fp = fopen("C:/notepad.exe","rb");
fp2 = fopen("C:/aa.exe","wb");
fseek(fp,0,SEEK_END);
int size = ftell(fp);
fseek(fp,0,SEEK_SET);
unsigned char* buffer = (unsigned char*)malloc(size);
fread(buffer,size,1,fp);

fwrite(buffer, size, 1, fp2);
free(buffer);
fclose(fp);
fclose(fp2);
return 0;

}

//fopen 返回值:文件顺利打开后,指向该流的文件指针就会被返回。如果文件打开失败则返回NULL,并把错误代码存在errno 中。
//fseek int fseek(FILE *stream, long offset, int fromwhere);函数设置文件指针stream的位置
//ftell 函数 ftell 用于得到文件位置指针当前位置相对于文件首的偏移字节数。
//fclose 使用fclose()函数就可以把缓冲区内最后剩余的数据输出到内核缓冲区,并释放文件指针和有关的缓冲区。

从一个文件中读取数据到内存,然后再把内存中的数据写入另外一个文件

标签:文件   相对   write   读取数据   pad   有关   pre   argv   close   

原文地址:http://blog.51cto.com/13136237/2304903

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!