X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=python%2Fguestfs.py;h=2e0be5c53e34f336aeca4e22d4cadd7bd1cace70;hp=6cf7e19e7fa9788be6f9801b03a3e28dd0b3a89a;hb=6bcbe54b5785cb8c911ccf4b724ae6abfdf53ce4;hpb=5365ebd501850ea10d9a5b28fc6480ea34dbe16d;ds=sidebyside diff --git a/python/guestfs.py b/python/guestfs.py index 6cf7e19..2e0be5c 100644 --- a/python/guestfs.py +++ b/python/guestfs.py @@ -216,3 +216,12 @@ class GuestFS: def command_lines (self, arguments): return libguestfsmod.command_lines (self._o, arguments) + def stat (self, path): + return libguestfsmod.stat (self._o, path) + + def lstat (self, path): + return libguestfsmod.lstat (self._o, path) + + def statvfs (self, path): + return libguestfsmod.statvfs (self._o, path) +