zoukankan      html  css  js  c++  java
  • 从一个文件中读取数据到内存,然后再把内存中的数据写入另外一个文件

    //从一个文件中读取数据到内存,然后再把内存中的数据写入另外一个文件
    
    #include "stdafx.h"
    #include <malloc.h>
    
    int filelength(FILE *fp);
    int _tmain(int argc, _TCHAR* argv[])
    {
    	FILE *fp = NULL;
    	FILE *fp2 = NULL;
    	int FpSize = 0;
    	fopen_s(&fp,"C:\Windows\System32\notepad.exe","rb");
    	fopen_s(&fp2, "d:\CYP.exe", "wb");
    	FpSize = filelength(fp);
    
    	char * FileBuffer = (char *)malloc(FpSize);
    	if (FileBuffer!=NULL)
    	{
    		fread_s(FileBuffer, FpSize + 1, 1, FpSize, fp);
    
    
    		fwrite(FileBuffer, FpSize, 1, fp2);
    	}
    	free(FileBuffer);
    	fclose(fp);
    	fclose(fp2);
    
    	//printf("%d
    ", FpSize);
    	getchar();
    	return 0;
    }
    
    
    //获取文件大小
    int filelength(FILE *fp)
    {
    	int num;
    	fseek(fp, 0, SEEK_END);
    	num = ftell(fp);
    	fseek(fp, 0, SEEK_SET);
    	return num;
    }
    //fopen  返回值:文件顺利打开后,指向该流的文件指针就会被返回。如果文件打开失败则返回NULL,并把错误代码存在errno 中。
    //fseek  int fseek(FILE *stream, long offset, int fromwhere);函数设置文件指针stream的位置
    //ftell  函数 ftell 用于得到文件位置指针当前位置相对于文件首的偏移字节数。
    //fclose 使用fclose()函数就可以把缓冲区内最后剩余的数据输出到内核缓冲区,并释放文件指针和有关的缓冲区。
    
  • 相关阅读:
    考研_数据结构
    快速排序模板
    nginx设置跳转https
    PHP 构造函数
    js scroll事件
    php获取url中的参数
    js 的cookie问题
    yii2关联表
    sql优化之concat/concat_ws/group_concat
    yii2.0 url美化-apache服务器
  • 原文地址:https://www.cnblogs.com/wumac/p/5252775.html
Copyright © 2011-2022 走看看