Hi,
For copying a file using FileInfo in C Sharp/C#, use the following code. For copying a file without using file info check the example given here.
using System; using System.IO; public class MainClass { static void Main( string [] args) { FileInfo testFile = new FileInfo( @"c:NewWorkstestOld.txt" ); testFile.Create(); testFile.CopyTo( @"c:NewProjtestNew.txt" ); } } |
Pingback: Copy a file in C Sharp/C# without using FileInfo | Coderz Heaven