Wednesday 25 May 2016

Move Files using c#

string filesource = @"C:\file.txt";
string filedestination = @"C:\Myfolder\Ramneek\file.txt";

System.IO.File.Move(filesource,filedestination);

No comments:

Post a Comment