comparison scripts/@ftp/mkdir.m @ 30567:3eeaba530a03

doc: Add @seealso links to @ftp method functions. * ascii.m, binary.m, cd.m, close.m, delete.m, dir.m, ftp.m, mget.m, mkdir.m, mput.m, rename.m, rmdir.m: Add @seealso links to @ftp method functions.
author Rik <rik@octave.org>
date Wed, 29 Dec 2021 11:05:20 -0800
parents 796f54d4ddbf
children 597f3ee61a48
comparison
equal deleted inserted replaced
30566:0ef88c485786 30567:3eeaba530a03
26 ## -*- texinfo -*- 26 ## -*- texinfo -*-
27 ## @deftypefn {} {} mkdir (@var{f}, @var{path}) 27 ## @deftypefn {} {} mkdir (@var{f}, @var{path})
28 ## Create the remote directory @var{path}, over the FTP connection @var{f}. 28 ## Create the remote directory @var{path}, over the FTP connection @var{f}.
29 ## 29 ##
30 ## @var{f} is an FTP object returned by the @code{ftp} function. 30 ## @var{f} is an FTP object returned by the @code{ftp} function.
31 ## @seealso{@ftp/rmdir, @ftp/ftp}
31 ## @end deftypefn 32 ## @end deftypefn
32 33
33 function mkdir (f, path) 34 function mkdir (f, path)
34 __ftp_mkdir__ (f.curlhandle, path); 35 __ftp_mkdir__ (f.curlhandle, path);
35 endfunction 36 endfunction