vote up 3 vote down star

I want to copy a file from A to B in C#. How do I do that?

flag

4 Answers

vote up 8 vote down check

The File.Copy method:

MSDN Link

link|flag
vote up 6 vote down

Without any error handling code:

File.Copy(path, path2);
link|flag
vote up 0 vote down

System.IO.File.Copy

link|flag
vote up 0 vote down

Use the FileInfo class.

FileInfo fi = new FileInfo("a.txt");
fi.CopyTo("b.txt");
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.