A: I received a PDF file sent over multiple zip files. How can I reassemble the zip files into one zip file?

A: Assuming a zip file called file.zip was split into 3 different zip files: file.zip.001, file.zip.002 and file.zip.003, you can reassemble the original zip file by using the copy command. It is useful sometimes to split a big zip file into multiple files to make it easier to send by email.

  • Open a command prompt
  • Type in

    C:\Users\Leila\Desktop>copy /b file.zip.001+file.zip.002+file.zip.003 file.zip
  • You can now open file.zip and access the PDF file saved in it.