I need to allow users to upload a zip file via a web form. The server is running Linux with an Apache web server. Are there advantages to using a module like Archive::Zip to extract this archive or should I just execute a system call to unzip with backticks?
|
1
|
|
|
|
|
|
If you execute the binary
You'll also have to configure with the correct path to |
||||||
|
|
|
According to the Archive::Zip documentation you'd be better off using Archive::Extract:
That's interesting because Archive::Extract will try Archive::Zip first and then fall back to the Archive::Zip uses Compress::Raw::Zlib which is a low level interface to the zlib system library; so it's not a pure Perl implementation meaning it's going to be similar in performance to |
||||
|
|
|
Once concern is with memory. We have found the hard way (production web server crashed) that Archive::Tar had a memory leak. So while overall using a module instead of a system call to an external command is a good idea (see other responses for reasoning), you need to make sure the module has no gotchas. |
||
|
|
