Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# Copy a file to another location with a different name

Tags:

c#

file-io

If certain conditions are met, I want to copy a file from one directory to another WITHOUT deleting the original file. I also want to set the name of the new file to a particular value.

I am using C# and was using FileInfo class. While it does have CopyTo method. It does not give me the option to set the file name. And the MoveTo method while allowing me to rename the file, deletes the file in the original location.

What is the best way to go about this?

like image 303
shashi Avatar asked Oct 07 '10 12:10

shashi


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.

Is C language easy?

Compared to other languages—like Java, PHP, or C#—C is a relatively simple language to learn for anyone just starting to learn computer programming because of its limited number of keywords.


2 Answers

System.IO.File.Copy(oldPathAndName, newPathAndName); 
like image 171
Marc Gravell Avatar answered Oct 12 '22 06:10

Marc Gravell


You may also try the Copy method:

File.Copy(@"c:\work\foo.txt", @"c:\data\bar.txt") 
like image 37
Darin Dimitrov Avatar answered Oct 12 '22 05:10

Darin Dimitrov