You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 10, 2020. It is now read-only.
Zip the contents of a input directory and store the results in an output directory. output by default should be Dir.get_path(input) + '.zip'.
Do not include hidden files (those prefixed with a period) in the contents.
Optional recursive option: for input, recurse into each subdirectory up to depth (depth default = 4) and repeat zip operation for that subdirectory. Recursive behaviour should enqueue multiple jobs (each with depth=0).
Zip the contents of a
input
directory and store the results in anoutput
directory.output
by default should beDir.get_path(input) + '.zip'
.Do not include hidden files (those prefixed with a period) in the contents.
Optional recursive option: for
input
, recurse into each subdirectory up todepth
(depth
default = 4) and repeat zip operation for that subdirectory. Recursive behaviour should enqueue multiple jobs (each withdepth=0
).Example:
Would after all zipping jobs have completed look like:
The text was updated successfully, but these errors were encountered: