()
| 123 | } |
| 124 | |
| 125 | func (e *FileSizeMismatchError) Error() string { |
| 126 | return "file size mismatch: " + e.Path |
| 127 | } |
| 128 | |
| 129 | // CompareFiles checks if two files have identical content. |
| 130 | func CompareFiles(path1, path2 string) (bool, error) { |
no outgoing calls