文件合并函数

先写个简单的文件合并函数(非常简单,贴上来纯粹为了给记忆中加点东西,看到的人不要骂我),有时间写个捆绑的程序

 

//  CommbineFile.cpp : 定义控制台应用程序的入口点。
//

// #include "stdafx.h"

#include 
" stdio.h "
#include 
" stdlib.h "
#include 
" windows.h "
bool  CombineFile( char   * sourceFile, char   * attachFile, char   * destFile)
{
    FILE 
* fdSourceFile  =  NULL;
    FILE 
* fdAttachFile  =  NULL;
    
int  nSourceFileSize = 0 ,nAttachFileSize = 0 ;
    fdSourceFile 
=  fopen(sourceFile, " r " );
    fdAttachFile 
=  fopen(attachFile, " r " );
    
if  ( ! fdSourceFile  ||   ! fdAttachFile)
    {
        
return   false ;
    }
    
if  (fseek(fdSourceFile, 0L ,SEEK_END))
    {
        
return   false ;
    }
    nSourceFileSize 
=  ftell(fdSourceFile);
    fseek(fdSourceFile,
0L ,SEEK_SET);
    
if  (fseek(fdAttachFile, 0L ,SEEK_END))
    {
        
return   false ;
    }
    nAttachFileSize 
=  ftell(fdAttachFile);
    fseek(fdAttachFile,
0L ,SEEK_SET);

    
char   * sBuf  =  ( char   * )malloc((nSourceFileSize + 1 ) * sizeof ( char ));
    
if  ( ! sBuf)
    {
        
return   false ;
    }
    
char   * aBuf  =  ( char   * )malloc((nAttachFileSize + 1 ) * sizeof ( char ));
    
if  ( ! aBuf)
    {
        
return   false ;
    }

    memset(sBuf,
0 ,nSourceFileSize + 1 ); // not need,I think
    memset(aBuf, 0 ,nAttachFileSize + 1 );

    
int  nSourceRead = 0 ,nAttachRead = 0 ;
    nSourceRead 
=  fread(sBuf, sizeof ( char ),nSourceFileSize,fdSourceFile);
    nAttachRead 
=  fread(aBuf, sizeof ( char ),nAttachFileSize,fdAttachFile);

    FILE 
*  fdDestFile  =  fopen(destFile, " w " );
    
if  ( ! fdDestFile)
    {
        
return   false ;
    }
    fwrite(sBuf,
sizeof ( char ),nSourceFileSize,fdDestFile);
    fwrite(aBuf,
sizeof ( char ),nAttachFileSize,fdDestFile);

    fclose(fdAttachFile);
    fclose(fdDestFile);
    fclose(fdSourceFile);
    free(sBuf);
    free(aBuf);

    
return   true ;
}

int  main( int  argc,  char   * argv[])
{
    CombineFile(
" D:\\1.txt " , " D:\\2.txt " , " D:\\3.txt " );
    
return   0 ;
}

 

 

转载于:https://www.cnblogs.com/20090802/archive/2009/12/26/1632912.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值