| View previous topic :: View next topic |
| Author |
Message |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Thu Sep 19, 2002 10:48 pm Post subject: Resouce Compiler |
|
|
Does someone know the dos command to copy two or more files into one file (a resource file)...I think it is COPY /B but I can't figure it out...then I need to know what the offsets are for the compiled file.
Thanks.  _________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
| Back to top |
|
 |
Dr. Dread Professional Member


Joined: 03 Aug 2001 Posts: 1065 Location: Copenhagen, Denmark
|
Posted: Thu Sep 19, 2002 10:57 pm Post subject: |
|
|
The /B switch sets copying for binary files.
For appending files using COPY you can use wildcards like this:
COPY *.txt output.fil
or specific filenames
COPY file1.txt+file2.txt output.fil
Greetz
Dread _________________ ~~ Alcohol and calculus don't mix... Don't drink and derive! ~~
String.DLL * advanced string processing |
|
| Back to top |
|
 |
Dr. Dread Professional Member


Joined: 03 Aug 2001 Posts: 1065 Location: Copenhagen, Denmark
|
Posted: Thu Sep 19, 2002 10:59 pm Post subject: |
|
|
PS: Of course you can use the /B switch as well. E.g.
COPY /B file1.bin+file2.bin output.fil
Dread _________________ ~~ Alcohol and calculus don't mix... Don't drink and derive! ~~
String.DLL * advanced string processing |
|
| Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Thu Sep 19, 2002 10:59 pm Post subject: |
|
|
Thanks! Now I remember it. I did it before but could not remember it now. _________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
| Back to top |
|
 |
Dr. Dread Professional Member


Joined: 03 Aug 2001 Posts: 1065 Location: Copenhagen, Denmark
|
|
| Back to top |
|
 |
|