``` if (from != null &&amp...
# kobalt
c
Copy code
if (from != null && to != null) {
                        if (!Files.exists(to) || Md5.toMd5(from.toFile()) != Md5.toMd5(to.toFile())) {
                            kobaltLog(3, "Copy from $from to $to")
                            Files.copy(from, to, option)
                        } else {
                            kobaltLog(3, "  Not copying, indentical files: $from $to")
                        }