This is a C# Program to copy the contents from one file to another file.
Problem Description
This C# Program Copies the Contents from one File to another File.
Problem Solution
Here File.Copy method is used to copy the contents of one file to another.
Program/Source Code
Here is source code of the C# Program to Copy the Contents from one File to another File. The C# program is successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.
/* * C# Program to Print the Sum of all the Multiples of 3 and 5 */ using System; using System.IO; class Program { static void Main() { File.Copy("sri.txt", "srip.txt"); Console.WriteLine(File.ReadAllText("sri.txt")); Console.WriteLine(File.ReadAllText("srip.txt")); Console.Read(); } }
Program Explanation
This C# program is used to copy the content from one file to another file. Here File.Copy method is used to copy the contents of one file to another. The ReadAllText() method is used to open a text file and read all lines of the file, and then close the file.
Sanfoundry Certification Contest of the Month is Live. 100+ Subjects. Participate Now!
advertisement
advertisement
Runtime Test Cases
Contents of File S Contents of File S
Sanfoundry Global Education & Learning Series – 1000 C# Programs.
If you wish to look at all C# Programming examples, go to 1000 C# Programs.
Next Steps:
- Get Free Certificate of Merit in C# Programming
- Participate in C# Programming Certification Contest
- Become a Top Ranker in C# Programming
- Take C# Programming Tests
- Chapterwise Practice Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
- Chapterwise Mock Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
Related Posts:
- Buy C# Books
- Practice Computer Science MCQs
- Apply for Computer Science Internship
- Apply for C# Internship
- Practice MCA MCQs