Jump to content

zipping a file in command line under linux


Liquid Fire

Recommended Posts

I have already run this command to change the default so that zip does not copy directories when created a zip file.  This is the commands i ran to change the evirement variable.

 

ZIPOPT="-D"

export ZIPOPT

 

then in php i do this:

 

$command = "zip {$downloadFile} {$pdfFile}";

system($command);

 

this does not work.  i even tried doing it with -D like:

 

$command = "zip -D {$downloadFile} {$pdfFile}";

system($command);

 

does anyone know how i can create a zip file in linux command line with it not copying the directory structure.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.