谁能帮我用c语言写一个文件复制程序,谢谢。

 我来答
ying双子prince
2017-05-18 · 超过60用户采纳过TA的回答
知道答主
回答量:73
采纳率:0%
帮助的人:99.8万
展开全部

#include <stdio.h>
/* * * * * * * * * * * * * * * * * * *
 * CopyFile: 此函数用于复制指定的文件到指定的位置,
 *        功能算是Windows下的 copy, 或linux下的 cp.
 * 这里的实现用了 fread() 和 fwrite(), 二进制流的形式读写
 * 返回值: 非负数: 复制的字节数.
 *         小于0的数: 请检查文件名是否正确输入, 是否合法.
 * * * * * * * * * * * * * * * * * * */
long CopyFile(const char* file_1, const char * file_2)
{
    FILE *pfRead = fopen(file_1, "rb");// pfRead用作复制源.
    FILE *pfWrite = fopen(file_2, "wb");// pfWrite对应复制出来的新文件.
    if (NULL == pfRead || NULL == pfWrite)
    {
        fclose(pfRead);
        fclose(pfWrite);
        return -1;
    }
    long bytesCount = 0;//统计复制的字节数. long最大可以表示不超过2GB的文件
 
    /* 因为C没有byte类型,所以这里用char替代
     * 貌似对大多数机器来说,char都是 单字节
     */
    int arrLen = 1024;   //这个是缓存数组的元素大小
    char bufArr[arrLen]; //这个是 "缓存", 缓存的字节数是 elementSize * arrLen.
    int copiedLen;      //这个变量用来记录fread函数每一次真正读取的元素数
    int elementSize = sizeof(bufArr[0]);
    do
    {
        copiedLen = 0;
 
        copiedLen = fread(bufArr, elementSize, arrLen, pfRead);
        fwrite(bufArr, elementSize, copiedLen, pfWrite);
 
        bytesCount += copiedLen * elementSize;
 
    } while(copiedLen == arrLen);
 
    //关闭流.
    fclose(pfRead);
    fclose(pfWrite);
 
    return bytesCount;
}
 
/* 此程序从命令行参数 获取文件名(路径):
 *      C:\>application_name file1_name file2_name
 * Example:
 *      C:\>cfilecopy.exe e:\abc.txt f:\abc2.txt
 * abc.txt必须存在,abc2.txt可以不存在,会自动创建文件.
 * 如果abc2.txt已存在,会被覆盖掉.
 *   (友情提示:注意保存重要的文件, 别被"盖"了!)
 * */
int main(int argc, char *argv[])
{
    if(argc == 3)
    {
 
        char * f1 = argv[1];
        char * f2 = argv[2];
 
        printf("Copy File 1: %s\n To File 2: %s\n", f1, f2);
        puts("Copying......");
 
        long bytesCount = CopyFile(f1, f2);
 
        if (bytesCount < 0)
        {
            puts("Fail to copy.");
        }
        else
        {
            printf("  %ld bytes wrote into %s.\n", bytesCount, f2);
        }
    }
    else
    {
        puts("parameters error");
    }
    //getchar();
    return 0;
}

go学龙
2017-05-18 · TA获得超过484个赞
知道小有建树答主
回答量:520
采纳率:76%
帮助的人:230万
展开全部
#include <stdio.h>

int main(void)
{
FILE *fileOne = NULL, *fileTwo = NULL;
char ch = '.', name[20] = {'\0'}, newName[40] = {'\0'};
int i = 0, j = 0, k = 0;

printf("please input file's name: (c:\\str1.txt) ");
scanf("%s", name);

fileOne = fopen(name, "r");
if(NULL == fileOne)
return 0;

for(i = 0; name[i] != '.'; i++)
;

name[i] = '\0';

strcat(newName, name);
strcat(newName, "Copy");
name[i] = ch;

fileTwo = fopen(strcat(newName, name + i), "w");
if(NULL == fileTwo)
return 0;

while(feof(fileOne) == 0)
{
fputc(fgetc(fileOne), fileTwo);
}

printf("copy successfully!\n");
fclose(fileOne);
fclose(fileTwo);

return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
焉范平丰
2020-03-01 · TA获得超过3770个赞
知道大有可为答主
回答量:3177
采纳率:32%
帮助的人:222万
展开全部
#include <stdio.h>
/* * * * * * * * * * * * * * * * * * *
* CopyFile: 此函数用于复制指定的文件到指定的位置,
* 功能算是Windows下的 copy, 或linux下的 cp.
* 这里的实现用了 fread() 和 fwrite(), 二进制流的形式读写
* 返回值: 非负数: 复制的字节数.
* 小于0的数: 请检查文件名是否正确输入, 是否合法.
* * * * * * * * * * * * * * * * * * */
long CopyFile(const char* file_1, const char * file_2)
{
FILE *pfRead = fopen(file_1, "rb");// pfRead用作复制源.
FILE *pfWrite = fopen(file_2, "wb");// pfWrite对应复制出来的新文件.
if (NULL == pfRead || NULL == pfWrite)
{
fclose(pfRead);
fclose(pfWrite);
return -1;
}
long bytesCount = 0;//统计复制的字节数. long最大可以表示不超过2GB的文件

/* 因为C没有byte类型,所以这里用char替代
* 貌似对大多数机器来说,char都是 单字节
*/
int arrLen = 1024; //这个是缓存数组的元素大小
char bufArr[arrLen]; //这个是 "缓存", 缓存的字节数是 elementSize * arrLen.
int copiedLen; //这个变量用来记录fread函数每一次真正读取的元素数
int elementSize = sizeof(bufArr[0]);
do
{
copiedLen = 0;

copiedLen = fread(bufArr, elementSize, arrLen, pfRead);
fwrite(bufArr, elementSize, copiedLen, pfWrite);

bytesCount += copiedLen * elementSize;

} while(copiedLen == arrLen);

//关闭流.
fclose(pfRead);
fclose(pfWrite);

return bytesCount;
}

/* 此程序从命令行参数 获取文件名(路径):
* C:\>application_name file1_name file2_name
* Example:
* C:\>cfilecopy.exe e:\abc.txt f:\abc2.txt
* abc.txt必须存在,abc2.txt可以不存在,会自动创建文件.
* 如果abc2.txt已存在,会被覆盖掉.
* (友情提示:注意保存重要的文件, 别被"盖"了!)
* */
int main(int argc, char *argv[])
{
if(argc == 3)
{

char * f1 = argv[1];
char * f2 = argv[2];

printf("Copy File 1: %s\n To File 2: %s\n", f1, f2);
puts("Copying......");

long bytesCount = CopyFile(f1, f2);

if (bytesCount < 0)
{
puts("Fail to copy.");
}
else
{
printf(" %ld bytes wrote into %s.\n", bytesCount, f2);
}
}
else
{
puts("parameters error");
}
//getchar();
return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式