comparison scripts/@ftp/delete.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 {} {} delete (@var{f}, @var{file}) 27 ## @deftypefn {} {} delete (@var{f}, @var{file})
28 ## Delete the remote file @var{file} over the FTP connection @var{f}. 28 ## Delete the remote file @var{file} 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/rename, @ftp/ftp}
31 ## @end deftypefn 32 ## @end deftypefn
32 33
33 function delete (f, file) 34 function delete (f, file)
34 __ftp_delete__ (f.curlhandle, file); 35 __ftp_delete__ (f.curlhandle, file);
35 endfunction 36 endfunction