Page 1 of 1

how make copy file faster

Posted: 07 Oct 2010 03:04
by darioit
Hello everybody

I have this script

COPY FILE_ALL.TXT+FILE1.TXT FILE_ALL.TXT


File1.txt is very small and FILE_ALL.TXT became more and more bigger and the copy operation takes a lot of time also if the file1.txt is small

How can I optimize this process to add only few byte to a destination file faster

Thanks
Regards
Dario

Re: how make copy file faster

Posted: 07 Oct 2010 03:09
by miskox
Something like this:

Code: Select all

type small_file.txt>>big_file.txt


Saso

Re: how make copy file faster

Posted: 07 Oct 2010 04:47
by darioit
Nice it's faster!!!

But it's also secure like copy?

Regards
Dario

Re: how make copy file faster

Posted: 11 Oct 2010 01:49
by miskox
darioit wrote:But it's also secure like copy?


Explain in more detail what do you mean with secure? It is part of an OS so OS will return any errors if there are any.

Saso

Re: how make copy file faster

Posted: 11 Oct 2010 04:59
by darioit
It's work file also with Type and much faster!

Ty

Regards
Dario