summaryrefslogtreecommitdiffstats
path: root/java/com/redhat
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/redhat')
-rw-r--r--java/com/redhat/et/libguestfs/GuestFS.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/java/com/redhat/et/libguestfs/GuestFS.java b/java/com/redhat/et/libguestfs/GuestFS.java
index 5ae2b106..07253176 100644
--- a/java/com/redhat/et/libguestfs/GuestFS.java
+++ b/java/com/redhat/et/libguestfs/GuestFS.java
@@ -2557,4 +2557,25 @@ public class GuestFS {
private native void _ping_daemon (long g)
throws LibGuestFSException;
+ /**
+ * test if two files have equal contents
+ *
+ * This compares the two files "file1" and "file2" and
+ * returns true if their content is exactly equal, or false
+ * otherwise.
+ *
+ * The external cmp(1) program is used for the comparison.
+ *
+ * @throws LibGuestFSException
+ */
+ public boolean equal (String file1, String file2)
+ throws LibGuestFSException
+ {
+ if (g == 0)
+ throw new LibGuestFSException ("equal: handle is closed");
+ return _equal (g, file1, file2);
+ }
+ private native boolean _equal (long g, String file1, String file2)
+ throws LibGuestFSException;
+
}