文件夹的复制----c语言实现

这篇博客介绍了如何使用C语言将文件和文件夹进行复制。作者结合了网上找到的文件复制和文件夹遍历的代码,并对遍历部分进行了修改。
摘要由CSDN通过智能技术生成

代码是从网上找的,一段文件复制,一段文件夹遍历  

我把两段代码结合在一起了,对遍历代码略作修改。

//头文件

#pragma once

#include <stdio.h>
#include <stdlib.h>
#include <tchar.h>
#include <direct.h>
#include <string.h>
#include <io.h>
#include <process.h>

#define LOG
#define SIZEBUFF 255
#define SIZEOFBUFFER 256*1024L /* 缓冲区大小,默认为256KB */
#define STR_SIZE 120




extern long filesize(FILE *stream);
extern int copyfile(const char* src, const char* dest);
extern int stradd(char* str, char * str1, char * str2);
extern int copy(char *tp, char *dir_new);
extern int conf_model(char *buff);



//function.cpp


long filesize(FILE *stream)
{
	long curpos, length;
	curpos = ftell(stream);
	fseek(stream,
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值