|
Tech Tip of the Week
Join files without any software
Many
people dont know how to join files without resorting to a utility.
Follow the steps below to join files using DOS (Go to the Run dialog and enter
CMD in Windows XP or later):
- Go to command prompt
- Suppose the folder where the files are located is
c:\windows\files\, then type
- cd c:\windows\files
- Now if the split files are x.rar.001, x.rar.002,
x.rar.003 and the final filename is to be x.rar, then type copy /b x.rar.001
+ x.rar.002 + x.rar.003 x.rar
Note: /b means copying binary and remember that + between the parts is necessary
|