vote up 0 vote down star

hi

this is Ramesh

i have winforms, i trying to copy the file one location to another,if same file name is there i need to overwrite, but i got error like "Cannot create a file when that file already exists."

but my query is i want to overwite what should i do? but i'm trying File.copy and File.move method not in use same error come out.... i'm novice..in c#

advance wishes

flag

0% accept rate

3 Answers

vote up 0 vote down

Check the write permission is allowed for the folder contains the destination file.

Try the following:

System.IO.File.Copy(src, dst, true);

true if you want the existing file will be overwritten.

To change or set file permission click here

link|flag
vote up 3 vote down

have you tried File.Copy(src, dest, true). This might help overwriting the existing file.

link|flag
vote up 1 vote down

File.Copy(source,destination,true) will overwrite destination if permissions allow. See the docs.

link|flag

Your Answer

Get an OpenID
or

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