diff options
author | Saúl Ibarra Corretgé <s@saghul.net> | 2019-11-29 10:05:45 +0100 |
---|---|---|
committer | Saúl Ibarra Corretgé <s@saghul.net> | 2019-12-03 09:03:50 +0100 |
commit | 5500253cac6fb4918aa75bde875794a7bfbdb2f0 (patch) | |
tree | 0de0802f8e09493858847614059b358c3ca32d2f /docs/src | |
parent | 0a4e0b9d305b53be732470a16cf226904e65faf4 (diff) | |
download | libuv-5500253cac6fb4918aa75bde875794a7bfbdb2f0.tar.gz libuv-5500253cac6fb4918aa75bde875794a7bfbdb2f0.zip |
fs: add uv_fs_mkstemp
Thanks to Andreas Hauptmann and Bastian Schmitz for their earlier work.
Supersedes: https://github.com/libuv/libuv/pull/2074
Closes: https://github.com/libuv/libuv/issues/2555
PR-URL: https://github.com/libuv/libuv/pull/2557
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/fs.rst | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/docs/src/fs.rst b/docs/src/fs.rst index dc16ff08..28356c2d 100644 --- a/docs/src/fs.rst +++ b/docs/src/fs.rst @@ -99,7 +99,8 @@ Data types UV_FS_LCHOWN, UV_FS_OPENDIR, UV_FS_READDIR, - UV_FS_CLOSEDIR + UV_FS_CLOSEDIR, + UV_FS_MKSTEMP } uv_fs_type; .. c:type:: uv_statfs_t @@ -245,10 +246,14 @@ API .. c:function:: int uv_fs_mkdtemp(uv_loop_t* loop, uv_fs_t* req, const char* tpl, uv_fs_cb cb) - Equivalent to :man:`mkdtemp(3)`. + Equivalent to :man:`mkdtemp(3)`. The result can be found as a null terminated string at `req->path`. - .. note:: - The result can be found as a null terminated string at `req->path`. +.. c:function:: int uv_fs_mkstemp(uv_loop_t* loop, uv_fs_t* req, const char* tpl, uv_fs_cb cb) + + Equivalent to :man:`mkstemp(3)`. The created file path can be found as a null terminated string at `req->path`. + The file descriptor can be found as an integer at `req->result`. + + .. versionadded:: 1.34.0 .. c:function:: int uv_fs_rmdir(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb) |