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
Copy file name to clipboardExpand all lines: os/src/ZipOps.scala
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ object zip {
47
47
* @parampreserveMtimes Whether to preserve modification times (mtimes) of the files.
48
48
* @paramdeletePatterns A list of regular expression patterns to delete files from an existing ZIP archive before appending new ones.
49
49
* @paramcompressionLevel number from 0-9, where 0 is no compression and 9 is best compression. Defaults to -1 (default compression).
50
-
* @paramperserveLinks Whether to store symbolic links as symbolic links instead of the referenced files. Default to false. Setting this to true has no effect when modifying a zip file in place.
50
+
* @paramfollowLinks Whether to store symbolic links as the referenced files. Default to true. Setting this to false has no effect when modifying a zip file in place.
* @paramincludePatterns A list of regular expression patterns to include files in the ZIP archive. Defaults to an empty list (includes all files).
234
234
* @parampreserveMtimes Whether to preserve modification times (mtimes) of the files.
235
235
* @paramcompressionLevel number from 0-9, where 0 is no compression and 9 is best compression. Defaults to -1 (default compression).
236
-
* @paramperserveLinks Whether to store symbolic links as symbolic links instead of the referenced files. Default to false. Setting this to true has no effect when modifying a zip file in place.
236
+
* @paramfollowLinks Whether to store symbolic links as the referenced files. Default to true.
237
237
* @return A geny.Writable object for writing the ZIP data.
0 commit comments