DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Snippet For Copy File In C#.net
Snippet for copy file in c#.net
File.Copy("originalFile.txt", "CopiedFile.txt");
Console.WriteLine(File.ReadAllText("originalFile.txt"));
Console.WriteLine(File.ReadAllText("CopiedFile.txt"));




