X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=java%2Fcom%2Fredhat%2Fet%2Flibguestfs%2FGuestFS.java;h=0725317686a1697468661f7658b38f9990377d03;hp=5ae2b106a06cec4d7af9dfe2d8f9d04b1c0030cb;hb=f47dafd23186938a22d41739d9bc695c7760b912;hpb=d9ea3e8d979c3ade1b21f27083788fd33fa3b1fa diff --git a/java/com/redhat/et/libguestfs/GuestFS.java b/java/com/redhat/et/libguestfs/GuestFS.java index 5ae2b10..0725317 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; + }