~gabriel1984sibiu/octave/octave

« back to all changes in this revision

Viewing changes to scripts/@ftp/dir.m

  • Committer: Grevutiu Gabriel
  • Date: 2014-01-02 13:05:54 UTC
  • Revision ID: gabriel1984sibiu@gmail.com-20140102130554-3r7ivdjln1ni6kcg
New version (3.8.0) from upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Copyright (C) 2009-2013 David Bateman
 
2
##
 
3
## This file is part of Octave.
 
4
##
 
5
## Octave is free software; you can redistribute it and/or modify it
 
6
## under the terms of the GNU General Public License as published by
 
7
## the Free Software Foundation; either version 3 of the License, or (at
 
8
## your option) any later version.
 
9
##
 
10
## Octave is distributed in the hope that it will be useful, but
 
11
## WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
## General Public License for more details.
 
14
##
 
15
## You should have received a copy of the GNU General Public License
 
16
## along with Octave; see the file COPYING.  If not, see
 
17
## <http://www.gnu.org/licenses/>.
 
18
 
 
19
## -*- texinfo -*-
 
20
## @deftypefn {Function File} {@var{lst} =} dir (@var{f})
 
21
## List the current directory in verbose form for the FTP connection
 
22
## @var{f}.
 
23
##
 
24
## @var{f} is an FTP object returned by the @code{ftp} function.
 
25
## @end deftypefn
 
26
 
 
27
function lst = dir (f)
 
28
  if (nargout == 0)
 
29
    __ftp_dir__ (f.curlhandle);
 
30
  else
 
31
    lst = __ftp_dir__ (f.curlhandle);
 
32
  endif
 
33
endfunction
 
34