From f47dafd23186938a22d41739d9bc695c7760b912 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 1 May 2009 12:16:08 +0100 Subject: Generated code for 'equal' command. --- java/com/redhat/et/libguestfs/GuestFS.java | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'java/com') 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; + } -- cgit