I have a file downloaded by a cron that is in zip64 format.
How can I unzip it using php or via a php cmd()?
|
|
|
|
|
|
|
surprisingly unix's unzip just worked!
|
||
|
|
|
|
A couple options that I know of. If your PHP runs on Windows you can use the COM interface to DotNetZip.
For DotNetZip, ZIP64 is automatically used when necessary, when reading in a zip file. Alternatively, you can invoke the command-line tool provided with DotNetZip.
This has the advantage of working on Linux+Mono, in addition to Windows+.NET.
The tool is unzip.exe, and you can just invoke (cmd) |
||||
|
|
|
Apparently Pearl's |
||
|