#include
#include
int main(int argc, char *argv[])
{
FILE *srcFile, *destFile;
int ch;
/*********Found************/
if (argc != 3)
{
printf("输入参数有误.\n");
exit(1);
}
/*********Found************/
if ((srcFile = fopen(argv[1], "rb")) == NULL)
{
printf("无法打开源文件 %s\n", argv[1]);
exit(2);
}
if ((destFile = fopen(argv[2], "wb")) == NULL)
{
fclose(srcFile);
printf("无法打开目标文件 %s\n", argv[2]);
exit(3);
}
while ((ch = fgetc(srcFile)) != EOF)
{
fputc(ch, destFile);
}
printf("succeful to copy a file!\n");
fclose(srcFile);
fclose(destFile);
return 0;
}
if (argc == 2) -> if (argc <= 2)
第一个参数就是指EXE文件名,第二个是源文件名,第三个是目标文件名,所以参数个数必须大于等于3,即小于等于2时错误。