Contents of File S Contents of File S
Users Online
· Guests Online: 89
· Members Online: 0
· Total Members: 188
· Newest Member: meenachowdary055
· Members Online: 0
· Total Members: 188
· Newest Member: meenachowdary055
Forum Threads
Newest Threads
No Threads created
Hottest Threads
No Threads created
Latest Articles
Articles Hierarchy
C# Program to Copy the Contents of One File to Another File
C# Program to Copy the Contents of One File to Another File
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.
Runtime Test Cases
Comments
No Comments have been Posted.
Post Comment
Please Login to Post a Comment.