summaryrefslogtreecommitdiffstats
path: root/java/com/redhat
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2009-06-29 12:26:11 +0100
committerRichard W.M. Jones <rjones@redhat.com>2009-06-29 12:26:11 +0100
commitb2ed0f4c55c2bd3d07341ba2207f0cb238eb4e18 (patch)
tree1a8afad7895f932501ff806a5dd3bfc9f2ed5f26 /java/com/redhat
parent405cf2a5772611ea05cca9fefa843154a9bc64a3 (diff)
downloadlibguestfs-b2ed0f4c55c2bd3d07341ba2207f0cb238eb4e18.tar.gz
libguestfs-b2ed0f4c55c2bd3d07341ba2207f0cb238eb4e18.tar.xz
libguestfs-b2ed0f4c55c2bd3d07341ba2207f0cb238eb4e18.zip
Generated code for df / df-h.
Diffstat (limited to 'java/com/redhat')
-rw-r--r--java/com/redhat/et/libguestfs/GuestFS.java44
1 files changed, 44 insertions, 0 deletions
diff --git a/java/com/redhat/et/libguestfs/GuestFS.java b/java/com/redhat/et/libguestfs/GuestFS.java
index 30913327..1d65581a 100644
--- a/java/com/redhat/et/libguestfs/GuestFS.java
+++ b/java/com/redhat/et/libguestfs/GuestFS.java
@@ -3725,4 +3725,48 @@ public HashMap<String,String> test0rhashtableerr ()
private native String[] _tail_n (long g, int nrlines, String path)
throws LibGuestFSException;
+ /**
+ * report file system disk space usage
+ * <p>
+ * This command runs the "df" command to report disk space
+ * used.
+ * <p>
+ * This command is mostly useful for interactive sessions.
+ * It is *not* intended that you try to parse the output
+ * string. Use "statvfs" from programs.
+ * <p>
+ * @throws LibGuestFSException
+ */
+ public String df ()
+ throws LibGuestFSException
+ {
+ if (g == 0)
+ throw new LibGuestFSException ("df: handle is closed");
+ return _df (g);
+ }
+ private native String _df (long g)
+ throws LibGuestFSException;
+
+ /**
+ * report file system disk space usage (human readable)
+ * <p>
+ * This command runs the "df -h" command to report disk
+ * space used in human-readable format.
+ * <p>
+ * This command is mostly useful for interactive sessions.
+ * It is *not* intended that you try to parse the output
+ * string. Use "statvfs" from programs.
+ * <p>
+ * @throws LibGuestFSException
+ */
+ public String df_h ()
+ throws LibGuestFSException
+ {
+ if (g == 0)
+ throw new LibGuestFSException ("df_h: handle is closed");
+ return _df_h (g);
+ }
+ private native String _df_h (long g)
+ throws LibGuestFSException;
+
}