(* file.mli - Don Yang (uguu.org) 05/20/06 *) (* (stat, src) dst: Copy src file and attributes to dst *) val copy_with_stat : (string * Unix.stats) -> string -> unit (* src dst: Copy src file and attributes to dst *) val copy : string -> string -> unit (* Compare two files, returns true if they are different *) val compare_with_stat : (string * Unix.stats) -> (string * Unix.stats) -> bool val compare : string -> string -> bool