Rich,
My knowledge is seriously rooted in the past and I was, indeed, thinking that
files needed an end-of-file character (0x1A) like in the old days of DOS (where I
still live for much of the time, it seems).
I thankyou for pointing out my error and dragging me into the present-day...
==
Cheers, Tim Meddick, Peckham, London. :-)
"Rich Pasco" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Tim Meddick wrote:
>
>> You can, however, join simple text files together with the "copy /b" command, as
>> the
>> only 'headers' and 'footers' that they posses are the basic start-of-file /
>> end-of-file characters that the "copy /b" command is designed to strip and
>> relocate.
>
> Actually, "copy /b" doesn't strip or relocate anything. It just
> concatenates the files exactly as they are.
>
> Back in the old DOS days, it was customary to end a text file with
> a Ctrl-Z character. "Copy /a" (or anything except /b) would strip off
> Ctrl-Z from all the files but the last one, so that any application
> which stopped reading at a Ctrl-Z would read all the files together
> before stopping at the last one.
>
> Nowadays, most applications don't use the Ctrl-Z on text files
> anymore, so you don't need the /A option to concatenate them,
> and /B works fine for text files without Ctrl-Z's.
>
> - Rich
|