I am pretty new to C# and I am trying to get my program to copy a file from one location to another. The method I have is as below;
private void CopyInstallF
Either FIle.Copy Move it to new location like below
FIle.Copy
new_file_path = file_path.Replace(".xls", " created on " + File.GetLastWriteTime(file_path).ToString("dd-MM-yyyy hh-mm-ss tt") + ".xls"); File.Move(file_path, new_file_path); File.Delete(file_path);