.net - Merging folders or subfolders with same name using C# -


i have 2 folders @ different locations same name. file generated in 1 of folders , copied other folder without overwriting existing contents in c#.

file.copy overwrites contents makes me lose previous contents. possible merge contents in folder?

use overloaded version of file.copy:

file.copy(sourcefile,destfile,false);


Comments

Popular posts from this blog

c++ - Is it possible to compile a VST on linux? -

java - Output of Eclipse is rubbish -

jquery - Confused with JSON data and normal data in Django ajax request -