vote up 0 vote down star

Duplicate: Is there a O(1) way in windows api to concatenate 2 files?

I want to concatenate two files but without appending one to another by reading the first one then write it to the end of the second one.

Is it possible?

I know how NTFS works , is it possible to simply link the last chunk of one file to the first chunk of the second file?

flag

sorry for the duplication , haven't notice – yossi1981 Apr 10 at 11:24

closed as exact duplicate by Mitch Wheat, sharptooth, Earwicker, Brian R. Bondy, dirkgently Apr 10 at 11:23

2 Answers

vote up 1 vote down check

There is no Win32 API for this. You're looking at a file system filter driver level fix, so that you can treat 2 files as if it was 1 file. Probably not worth your trouble.

link|flag
vote up 0 vote down

Even without NTFS trickery, you can avoid reading the first file using standard C or C++ features - simply open in append mode - this will do seek to the end of the file without reading all the contents. You can then add the second file by reading it and writing contents to the first.

link|flag
This is exactly what I wanted to avoid , reading and writing th esecond file – yossi1981 Apr 10 at 11:10

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