rename
Renames a source file. The closure will be called with a single parameter, the name of the file. The closure should return a String object with a new target name. The closure may return null, in which case the original name will be used.
Return
this
Parameters
rename closure
Renames a source file. The function will be called with a single parameter, the name of the file. The function should return a new target name. The function may return null, in which case the original name will be used.
Return
this
Parameters
rename function
Renames files based on a regular expression. Uses java.util.regex type of regular expressions. Note that the replace string should use the '$1' syntax to refer to capture groups in the source regular expression. Files that do not match the source regular expression will be copied with the original name.
Example:
rename '(.*)_OEM_BLUE_(.*)', '$1$2'
Return
this
Parameters
Source regular expression
Replacement string (use $ syntax for capture groups)
Renames files based on a regular expression. See rename.
Return
this
Parameters
Source regular expression
Replacement string (use $ syntax for capture groups)