RE: [PHP] Extracting Compressed Files

2003-08-14 Thread Ivo Pletikosic
_COPY_FAILED; } fclose($fp); } else { return BDBERR_TITLE_ZIP_FILE_COPY_FAILED; } } else { return BDBERR_UNKNOWN_COMPRESSION_METHOD; } } -Original Message- From: Matt Palermo [mailto:[EMAIL PROTECTED] Sent: Mond

[PHP] Extracting Compressed Files

2003-08-14 Thread Matt Palermo
Does anyone know of easy ways to be able to extract all files/folders/subfolders from different types of compressed files (.zip, .tar.gz, etc.)? If anyone could help me out with this, I would really appreciate it. Thanks, Matt

RE: [PHP] Extracting Compressed Files

2003-08-08 Thread Matt Palermo
EMAIL PROTECTED] Sent: Monday, August 04, 2003 11:46 PM To: Matt Palermo Subject: Re: [PHP] Extracting Compressed Files Use exec to execute the command line programs that deal with these archives. Namely tar and gz and bzip2 and zip/unzip. For single files that are compressed you can use PHP to decom

Re: [PHP] Extracting Compressed Files

2003-08-04 Thread Curt Zirzow
* Thus wrote Matt Palermo ([EMAIL PROTECTED]): > Does anyone know of easy ways to be able to extract all > files/folders/subfolders from different types of compressed files (.zip, > .tar.gz, etc.)? If anyone could help me out with this, I would really > appreciate it. man unzip man tar man if