crazy2011gamer :
Pinhedd :
you're going to have to rewrite this in proper English. As it stands right now I have no idea what you are asking
sorry i was in a rush. so basically i need to update some files in a folder that are the exact same thing with same name and they need to MERGE not make a copy and put both in same folder. sorry if im still not clear enough
If this is run on a UNIX based operating system you can simply concatenate them like so `cat inputfile_0 inputfile_1 ... inputfile_n > outputfile` but there's no native way to do that on Windows as it's not considered a good practice for most applications.
If the files are text based you can open them up in an editor such as Notepad++ and append the contents of one file to the other.
If the files are binary based, you've most likely read the instructions incorrectly. Appending binary data is a terrible practice. It's likely that the folder should be merged, and any preexisting files should be overwritten with newer versions.