fun File.transform(output: File, transformer: (ByteArray) -> ByteArray = { it -> it }): Unit
Transform this file or directory to the output by the specified transformer
output - The output location
output
transformer - The byte data transformer
transformer