Copying a file using FileInfo – C Sharp/C#

By | May 16, 2011

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");

  }
}

🙂

One thought on “Copying a file using FileInfo – C Sharp/C#

  1. Pingback: Copy a file in C Sharp/C# without using FileInfo | Coderz Heaven

Leave a Reply

Your email address will not be published. Required fields are marked *