diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2009-06-24 18:25:09 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2009-06-24 18:25:09 +0100 |
commit | 0574eab8bc7d8e72db862ec36815835938a5fdf1 (patch) | |
tree | 6588315e33f95de9fbb150f862064471a975050e /guestfs-actions.pod | |
parent | 8228eec99045ae720d8ef35851aa8c278f6b4e5c (diff) | |
download | libguestfs-0574eab8bc7d8e72db862ec36815835938a5fdf1.tar.gz libguestfs-0574eab8bc7d8e72db862ec36815835938a5fdf1.tar.xz libguestfs-0574eab8bc7d8e72db862ec36815835938a5fdf1.zip |
Generated code for 'mkdtemp' command.
Diffstat (limited to 'guestfs-actions.pod')
-rw-r--r-- | guestfs-actions.pod | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/guestfs-actions.pod b/guestfs-actions.pod index 9afa5de9..82746a5a 100644 --- a/guestfs-actions.pod +++ b/guestfs-actions.pod @@ -1191,6 +1191,30 @@ as necessary. This is like the C<mkdir -p> shell command. This function returns 0 on success or -1 on error. +=head2 guestfs_mkdtemp + + char *guestfs_mkdtemp (guestfs_h *handle, + const char *template); + +This command creates a temporary directory. The +C<template> parameter should be a full pathname for the +temporary directory with the six characters being +"XXXXXX". + +For example: "/tmp/tmpXXXXXX" or "/Temp/tmpXXXXXX", +the second one being suitable for Windows. + +The name of the temporary directory that was created +is returned. + +The caller is responsible for deleting the temporary +directory and its contents after use. + +See also: L<mkdtemp(3)> + +This function returns a string, or NULL on error. +I<The caller must free the returned string after use>. + =head2 guestfs_mkfs int guestfs_mkfs (guestfs_h *handle, |