Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

CleanZipAndGo

0.00/5 (No votes)
20 May 2003 1  
Utility to quickly archive any project to a Zip file.

Introduction

This utility cleans Visual C++ Project files (like CleanVC utility does) and then zips all the files under the directory where CleanZipAndGo.exe is located.

Let's say you are working on the following project: C:\MyFTPServer\MyFTPServer.dsw.

Copy CleanZipAndGo.exe under C:\MyFTPServer.

To create a backup of your project and everything under C:\MyFTPServer, double click on CleanZipAndGo.exe.

A DOS Window opens, showing you the progress.

The created file has the following format: [Directory Name]_[Time].zip. So for the MyFTPServer directory, the filename would be something like MyFTPServer_1052855052.zip. The number 1052855052 is the date and time. (The time_t value).

To get the date and time from this number, at the command prompt type: CleanZipAndGo.exe 1052855052. It prints Archive date and time Tue May 13 15:44:12 2003.

CleanZipAndGo creates a file named CleanZipAndGo.txt when it backs up a project. This file is useful when you unzip a backup file and then rename the folder name to remove the _1052855052. The CleanZipAndGo.txt contains the original backup filename.

The CleanVC utility and the ZLIB library helped me in creating this little but useful utility.

Notes:

The archive path is hard coded to C:\Archive.

The maximum ZIP archive file size is set to 100000000 If the Zip file is bigger, it will be split into multiple files but this has not been tested. (My project are not that big !)

History

Version 1.0: Initial release

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here