summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2009-06-24 18:22:37 +0100
committerRichard W.M. Jones <rjones@redhat.com>2009-06-24 18:22:37 +0100
commit8228eec99045ae720d8ef35851aa8c278f6b4e5c (patch)
treed3a6f405b526bc5865ca86fc81e8cf3c135a17f5 /src
parentaf0cfda7e4942c14c9db7304962f8471ccad170f (diff)
downloadlibguestfs-8228eec99045ae720d8ef35851aa8c278f6b4e5c.tar.gz
libguestfs-8228eec99045ae720d8ef35851aa8c278f6b4e5c.tar.xz
libguestfs-8228eec99045ae720d8ef35851aa8c278f6b4e5c.zip
Add mkdtemp command.
Diffstat (limited to 'src')
-rwxr-xr-xsrc/generator.ml22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/generator.ml b/src/generator.ml
index 51d32357..e378395a 100755
--- a/src/generator.ml
+++ b/src/generator.ml
@@ -2442,6 +2442,28 @@ containing C<dir>.
It is an interface to the L<scrub(1)> program. See that
manual page for more details.");
+ ("mkdtemp", (RString "dir", [String "template"]), 117, [],
+ [InitBasicFS, Always, TestRun (
+ [["mkdir"; "/tmp"];
+ ["mkdtemp"; "/tmp/tmpXXXXXX"]])],
+ "create a temporary directory",
+ "\
+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)>");
+
]
let all_functions = non_daemon_functions @ daemon_functions