I want to copy a file from A to B in C#. How do I do that?
This should work!
using System.IO; ... var path = //your current filePath var outputPath = //the directory where you want your (.txt) file File.Copy(path,outputPath);