Home and Learn: C# NET Course


How To Copy A File In C# .Net

You can copy a file quite easily. It's done with the File class of System.IO. Let's see how. First create a new folder on your C drive. Give it the name copiedFiles.

Add a new button to your form. Double click to get at the code, and set up the following files and directory paths (obviously, change "Ken" to the name of your own computer user):

string fileToCopy = "C:\\Users\\Ken\\Documents\\test1.txt";
string newLocation = "C:\\Users\\Ken\\Documents\\copiedFiles\\test1.txt";
string folderLocation = "C:\\Users\\Ken\\Documents\\copiedFiles";

So the file we want to copy is test1.txt and it is in the Documents folder of a User called Ken. We want to copy it to a new location. The folder (Directory) we want to copy it to is called copiedFiles. We added a Folder Location, because we want to check if this Directory exists.

To copy a file, you use the Copy method of the File class:

System.IO.File.Copy( fileToCopy, newLocation, true);

In between the round brackets of Copy, you need a file to copy and the new location of the file you're trying to copy. You can also set an overwrite option to true or false. If the file being copied is already in the folder, setting an override value to true will replace it. The default is false, and you'll get an error if the file being copied already exists.

When the error checking is done as well, our code looks like this:

C# code to copy a file

The code checks to see if the Directory exists. If it does, then we check to see if the file exist. If all is OK, then we go ahead and copy the file.

Add the code to your own and try it out. When you click your button, you should see the "File Copied" message box appear. If you look in the copiedFiles folder that you created, you should see the test1.txt file there.

 

Move a File with C#

To move a file to a new location, you would use the Move method of the File class:

System.IO.File.Move( fileToMove, fileLocation );

Everything else is the same: type a file to move between the round brackets of the Move method. Then, after a comma, add the new location.

Don't forget to add your errorFile manipulation is a very useful skill fo checking as well!

 

Delete a File with C#

To delete a file from your computer, you can use the Delete method of the File class:

System.IO.File.Delete( file_path );

In between the round brackets of Delete, you need the name and path of the file you are trying to get rid of. Be very careful when trying this one out because it really does delete it. You won't find the file in the Recycle bin.

 

Conclusion

r you to master as a programmer. There's an awful lot more to it than in this book, obviously. But we've given you more than enough power to be getting on with!

In the next section, we'll take a look at databases and C#. The first thing you'll learn how to do is to create a database with SQL Server Express.

back to the c# net contents page

 


Buy the Book of this Course

Email us: enquiry at homeandlearn.co.uk