Hi, In the SnapshotDiffReport class
public enum DiffType {
CREATE("+"),
MODIFY("M"),
DELETE("-"),
RENAME("R");
...
If I do a "mv" on a file, in the snapshot diff, it shows as delete of old
name and creation of new name. What constitutes a "RENAME" ?
Thanks,
Manoj
