copy a file from one directory to another c#.net code example
Example: c# copy file
File.Copy(Path.Combine(sourceDir, fName), Path.Combine(distDir, fName));
File.Copy(Path.Combine(sourceDir, fName), Path.Combine(distDir, fName));