Riddokun opened this issue on Aug 23, 2005 ยท 14 posts
jupiterkris posted Wed, 24 August 2005 at 3:43 PM
You can get the gzip (gzip.exe) command line utility from the gzip home page . Thanks to Mark Adler and Jean-loup Gailly . http://www.gzip.org/ You could then try this ... ECHO OFF FOR %%f IN (C:folder*.cr2) DO C:foldergzip.exe -l %%f SUF .crz %%f > C:foldergzipFileInfo.txt FOR %%f IN (C:folder*.pz2) DO C:foldergzip.exe -l %%f SUF .p2z %%f >> C:foldergzipFileInfo.txt ECHO ON copy into notepad, rename as gzip.bat, and double click it . it basically looks for cr2 files in C:folder, converts them, using gzip.exe in C:folder into crz files . -l switch lists the info and > prints the stdout (screen output) to gzipFileInfo.txt . And does the same for the pz2 files, except >> appends the .pz2 info to the same text file . More on MSDOS batch file commands at - http://www.cs.ntu.edu.au/homepages/bea/home/subjects/ith305/description.html he he - just don't zip up your entire disk drive by accident .
Message edited on: 08/24/2005 15:49