File Copy Program in C Language
79Today we are going to learn a simple file copy program in C language. As I said this is a simple file copy program so you should not expect its output like DOS copy command has. Ok let’s start.
The main logic behind this program is that we will open a file and copy its contents to new file character by character. So we are going to implement logic that we had used, especially as a student, in our school or college i.e. copying note from a friends’ notes.
For this purpose we will need two files, one source file and other will be new file. Source file will be opened in read- only mode because we are not going to modify any data of this file, we only need to read character. Newly created file will be opened in write mode because we need to write every data what we will find in source file.
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
void main(int arg,char *arr[])
{
FILE *fs,*ft;
char ch;
clrscr();
if(arg!=3)
{
printf("Argument Missing ! Press key to exit.");
getch();
exit(0);
}
fs = fopen(arr[1],"r");
if(fs==NULL)
{
printf("Cannot open source file ! Press key to exit.");
getch();
exit(0);
}
ft = fopen(arr[2],"w");
if(ft==NULL)
{
printf("Cannot copy file ! Press key to exit.");
fclose(fs);
getch();
exit(0);
}
while(1)
{
ch = getc(fs);
if(ch==EOF)
{
break;
}
else
putc(ch,ft);
}
printf("File copied succesfully!");
fclose(fs);
fclose(ft);
}Important Note
NOTE : Please don't save this program as "copy.c" otherwise it will not work. You can name it copyfile.c etc. I named it copyf.c.
Code Explanation
As you can see this program is not for those who has just began C programming in their school or college. This is for those who have idea of file handling, function, pointer array etc. So I’m not going to explain it line by line, only which I think is important will be explained.
Line – 5: This line is starting of the main function which accepts two arguments or parameters. First argument is an integer argument in the main function which stores the number of parameters provided at the runtime. In our program it has to be 3 (e.g. program_name source_file destination_file). Second argument in main function is a character array pointer, as you can see, which store the arguments.
Line – 7: This line declares two file pointer variables which we will need in our program. One file pointer variable will be used to read file and another will be used to write to file.
Line – 10-15: These line will check whether user has provided 3 arguments or not. If argument is less than 3 or greater than 3, then it will show error message.
Line – 17-23: In these lines we will open source file in read mode. To serve this purpose we will use “fopen()” function. This function requires two arguments, first is file name and second is file opening mode. It takes file name from “main()” function’s character array pointer argument. If “fopen()” function can open file successfully then returns pointer else returns NULL. We are checking this, if file is not found or file cannot be accessed due to security restriction then there is no need to execute program further.
Line – 25-32: In this block of code we are trying to create a new file. So we need to open this file in write mode. It also takes file name from “main()” function’s character array pointer argument. If fopen() function returns NULL then we need to close source file stream and exit program.
Line – 34-43: As you can see here we have declared an infinite while loop and the loop continues until end of file is reached. The “gets()” function reads character from given stream and stores character in ch variable then increments file pointer to next character. In line 42 we are writing character stored in ch variable to new file (ft file pointer) with the help of “putc()” function.
Line – 46-47: These two lines contain two same functions whose job is to clearing the stream buffer and closing the stream buffer. Because we are using two file pointer, so we need to close both of them.I know this explanation is very concise for those who are new in file handling in C. But you can ask question about this topic through comment provided below. Thank you, keep visiting me.
Best of Amazon.com
|
|
Wii Fit
Price: $83.50
List Price: $89.99 |
|
Nintendo DSi Matte - Black
Price: $162.00
List Price: $169.99 |
|
PlayStation 3 Dualshock 3 Wireless Controller
Price: $44.27
List Price: $54.99 |
|
|
Wii Charge Station
Price: $24.69
List Price: $29.99 |
|
Official Nintendo Wii Wheel
Price: $5.95
List Price: $14.99 |
|
Gold's Gym Cardio Workout
Price: $14.99
List Price: $19.99 |
Best books on C Language
|
C: How to Program (6th Edition)
Price: $94.55
List Price: $123.00 |
|
Problem Solving and Program Design in C (6th Edition)
Price: $75.74
List Price: $105.00 |
|
C How to Program (5th Edition)
Price: $65.00
List Price: $123.00 |
|
C Program Design for Engineers (2nd Edition)
Price: $88.12
List Price: $102.00 |
|
Effective C++: 55 Specific Ways to Improve Your Programs and Designs (3rd Edition)
Price: $31.49
List Price: $49.99 |
Program Output
Related Links
- A Brief History of the C Language
Before we start any complex program in C, we must understand what really C is, how it came into existence and how it differs from other languages of that time. In this tutorial I will try to talk about these... - Data Types in C Language
A programming language is proposed to help programmer to process certain kinds of data and to provide useful output. The task of data processing is accomplished by executing series of commands called... - What is Function in C Language?
A function in C language is a block of code that performs a specific task. It has a name and it is reusable i.e. it can be executed from as many different parts in a C Program as required. It also ... - Pointers in C Programming
In this tutorial I am going to discuss what pointer is and how to use them in our C program. Many C programming learner thinks that pointer is one of the difficult topic in C language but its not... - C Programming-Dynamic Memory Allocation
This tutorial is intended to tell beginner the power of pointers in C programming. This tutorial will try to explain how with the help of pointer we can solve the problem of memory management. If you dont... - Turn Your PC Keyboard to Musical Keyboard
To accomplish this task you dont need to buy any expensive software or hardware, only a little knowledge of C program will do and you can build your own musical keyboard software. Before we begin you...
Useful Links
- Setup LAN with Hub or Switch
Switch or HUB allows us to add more computers in our LAN or existing LAN. Switch or HUB is usually needed when we are networking more than two PCs. Why we need Switch or HUB only when networking more than two... - How to share an internet connection on LAN?
If you have a fully functional LAN then net sharing is few click away, yes few clicks. I assumed that you have already a broadband connection and account configured on your PC. Just go to “My Network... - How to setup LAN with Crossover Connection
The process of crimping is so simple that, if carefully followed, a newbie can also do this with no difficulty. Because this is a crossover connection (i.e. PC to PC connection, no hub or switch will be used)... - How to assign IP Addresses to the client & server PC?
In this tutorial we will learn how to assign IP address to a computer. Before that I should make it clear that every PC will have its own unique IP address. Assigning same IP to other PC will give you... - How to work from home on internet
How to make money online? This is the common and highest searched term on internet. You will also get numerous answers to this query. But, before following any answer, please make sure which type of money...
PrintShare it! — Rate it: up down flag this hub
Comments
This was very helpful. Thank You. I am creating a function library for a low-level system and I do not need to use system calls, and this example needs a little modification on my part, but it helped put me on the right track. Thanks again.
thank you
Could you possibly write a program that is more incorrect? It's pretty tough here.
Error 1: The main() function in a C program always returns an "int," never "void." Take a look at the specification to see what I mean, and never, never, ever use Herbert Schildt as a reference.
Error 2: exit() is declared in , (which you failed to include) and it takes an int as a parameter. You used it incorrectly every time.
Error 3: getc() returns an int, not a char. If the source file happens to have a chr(255) in it (maybe it's an executable), your program will see that as the end (because it will get converted to an integer -1, which equals EOF) and exit prematurely.
Error 4: You don't check the return status of getc(), putc(), or the fclose()s, all of which can fail, but your program will report everything is a-ok.
Error 5: Not putting a newline at the end of your final printf means that the next prompt will appear in a really ugly place.
Error 6: Why no including when you're using getch()? And, by the way, getch() is a microsoft specific function, with no guarantees of being available on other platforms.
Please correct these errors so you don't make other novices look stupid when they cite your examples.





hAkUwoH123 says:
6 months ago
bubu ang sagot mo!!!!