As Archon said, a command line will concatenate all those files pretty fast. In windows, open a cmd window, get to the active directory, and enter something like this:
copy <myebookname part0??.htm> NewFileName
the question marks in the file name get replace by the sequential numbers in your split files. Assuming they are sequentially numbered. If not, you'll have to renumber them manually.
NewFileName now contains all of the "parts" that got matched to the wild card '??' .
You should see a list of the files scroll up the screen.
Good Luck
|