Posts Tagged ‘zip’

About archiving files

Tuesday, January 20th, 2009

Definition

According to the Merriam-Webster online dictionary, an archive is a repository or collection especially of information 1. Using this definition we can say that to a web designer, an archive is the collection of all the files necessary for a web site to function properly. A web site is a collection of files. Those files, which can reside in one or more folders (directories), will often include the following types of information:

  1. HTML formatted content
  2. Graphics (image files like jpg, gif, and png formats)
  3. Videos
  4. Audio
  5. External CSS (Cascading Style Sheet)
  6. External Javascript
  7. Flash

Imagine taking your entire web site, with all of its html, images, CSS files, and media files and saving them all into one file that can easily be backed up or sent to another person over a network or through email. Next imagine compressing that one file so that it is smaller than the sum total of the entire web site. That is a web archive. When the file is decompressed, it returns to its previous size, each folder is recreated in the right hierarchy and each file is placed back into its original folder.

Archiving can be used in the following situations:

  1. You need to send a folder of files to another member of a design team
  2. You do not have direct access to a web server and need to send the web site archive to the webmaster. The web master will then decompress the file and place the files in the correct folder on the web server (this is more common than you might think).
  3. The project is completed and you want to back up the project without wasting a lot of space. For example, it it is a large project, you want it to be able to file on a single CD or thumb drive
  4. You are taking an online class and the instructor wants you to upload your project to a submissions folder for a grade
  5. You are backing up different versions of the design process and will name each archive with a date so that you can document the project timeline or simply be able to revert back to a previous design idea

Compression formats

There are many different types of archiving and compression formats. Some only archive, some only compress, some do both. Several of the most common are .zip, .sit, .tar, .rar, and .tgz. Wikipedia has a great article on the different formats and their purpose and platform2. For our purposes, we will only examine the process of creating a .zip archive because it is supported natively on both the PC and Mac platform. The term natively means that no additional software is required beyond the most current version of the operating system. There are software applications designed to create, and expand archives, however we will look at the ways to create the .zip archive using the built-in tools that come with Windows and OSX.

The process

While you can individually select specific files on a one by one basic to include in a compressed archive when it is better to do so, to archive an entire web project it is usually easier to select the root directory file that contains all the files you want to archive. For example, let’s say we have a folder named unitA. The unitA folder contains all of the files necessary to complete the unit A activities.

In Windows

  1. Select the unitA folder
  2. Click the right mouse button. You will get a context sensitive menu
  3. Select the Send to option. A submenu will appear
  4. Select the Compressed (zipped) folder from the options. A new file will be created and named unitA.zip

In OSX

  1. Select the unitA folder
  2. Press and hold down the Control key and then click the mouse. You will get a context sensitive menu
  3. Select Compress “unitA” from the options. A new file will be created and named unitA.zip

Extracting an archive

Extracting or expanding is the term used to describe taking an archive and returning it to its original set of files and folders. On both the PC and Mac platforms, the .zip format files are self-extracting. This means that double-clicking the .zip file will automatically create a new folder with the same name and create a copy of all of the files and subfolders in the correct order and hierarchy. No special software is needed.

Note: An assumption is being made that Windows XP and OSX are being used. If you are using an old version of the operating systems, then a third party software application may need to be used to create and extract the archives.

References

1.Definition of archive. Merriam-Webster online dictionary. http://www.merriam-webster.com/dictionary/archive
2.List of Archive Formats. Wikipedia. http://en.wikipedia.org/wiki/List_of_archive_formats