comparison scripts/@ftp/dir.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 83f9f8bda883
children 597f3ee61a48
comparison
equal deleted inserted replaced
30566:0ef88c485786 30567:3eeaba530a03
31 ## @var{f} is an FTP object returned by the @code{ftp} function. 31 ## @var{f} is an FTP object returned by the @code{ftp} function.
32 ## 32 ##
33 ## If the optional output @var{lst} is requested return a struct array 33 ## If the optional output @var{lst} is requested return a struct array
34 ## with one entry per file with the fields @code{name}, @code{date}, 34 ## with one entry per file with the fields @code{name}, @code{date},
35 ## @code{bytes}, @code{isdir}, @code{datenum}. 35 ## @code{bytes}, @code{isdir}, @code{datenum}.
36 ## @seealso{@ftp/cd, @ftp/mkdir, @ftp/rmdir, @ftp/ftp}
36 ## @end deftypefn 37 ## @end deftypefn
37 38
38 function lst = dir (f) 39 function lst = dir (f)
39 if (nargout == 0) 40 if (nargout == 0)
40 __ftp_dir__ (f.curlhandle); 41 __ftp_dir__ (f.curlhandle);