Win32 复制文件

第一种方法:

#include "stdafx.h"
#include <Windows.h>
#include <stdio.h>

#define BUF_SIZE 256


int _tmain(int argc, _TCHAR* argv[])
{
	HANDLE hIn,hOut;
	DWORD nIn,nOut;
	CHAR Buffer[BUF_SIZE];

	if (argc!=3)
	{
		printf("Usage: cpW file1 file2\n");
		return 1;
	}
	hIn=CreateFile(argv[1],GENERIC_READ,0,NULL,OPEN_EXISTING,0,NULL);
	if (hIn==INVALID_HANDLE_VALUE)
	{
		printf("Cannot open input file. Error:%x\n",GetLastError());
		return 2;
	}
	hOut=CreateFile(argv[2],GENERIC_WRITE,0,NULL,CREATE_ALWAYS,FILE_ATTRIBUTE_NORMAL,NULL);
	if (hOut==INVALID_HANDLE_VALUE)
	{
		printf("Cannot open output file. Error:%x\n",GetLastError());
		return 3;
	}
	while (ReadFile(hIn,Buffer,BUF_SIZE,&nIn,NULL)&&nIn>0)
	{
		WriteFile(hOut,Buffer,nIn,&nOut,NULL);
		if (nIn!=nOut)
		{
			printf("Fatal write error:%x\n",GetLastError());
			return 4;
		}
	}
	CloseHandle(hIn);
	CloseHandle(hOut);
	return 0;
}

第二种方法: 用win32便利函数

#include "stdafx.h"
#include <Windows.h>
#include <stdio.h>

int _tmain(int argc, _TCHAR* argv[])
{

	if (argc!=3)
	{
		printf("Usage: cpW file1 file2\n");
		return 1;
	}
	
	if (!CopyFile(argv[1],argv[2],false))
	{
		printf("copy file Error:%x\n",GetLastError());
		return 2;
	}
	return 0;
}

程序运行,dos下,3个参数。

*.exe "源文件名称" "目标文件名称"

三个文件在同一目录下

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值