Link to home
Start Free TrialLog in
Avatar of shfog
shfog

asked on

ColdFusion UnZip

What is a good utility to use as a com object for zipping or unzipping files with ColdFusion?
Avatar of anandkp
anandkp
Flag of India image

heard abt XCEEDZIP

its a DLL - install it & call it as a object from ur cfm code ...

let me know - if ur insterested doing this - so i can explain a bit more

K'Rgds
Anand
Avatar of shfog
shfog

ASKER

I am interested.
At this point I use WinZip called from a command line in VB 6.0.   I would like to move this process to the web page a files are uploaded.  I know that ColdFusion should be able to do this, but I can't find a way with WinZip, so far.
you can use

<CFEXECUTE
    NAME=" ApplicationName "
    ARGUMENTS="CommandLine Arguments"
    OUTPUTFILE="Output file name"
    TIMEOUT="Timeout interval in seconds">
    ...
</CFEXECUTE>

to use your winzip called from the command line

ASKER CERTIFIED SOLUTION
Avatar of anandkp
anandkp
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of shfog

ASKER

Thank you very much
Hi,

I want to output extracted files to a query. I need to include File name, path, size, and extension.

Please help.