view scripts/miscellaneous/dir.m @ 5689:9a16df2b1916

[project @ 2006-03-17 05:00:57 by jwe]
author jwe
date Fri, 17 Mar 2006 05:00:57 +0000
parents 2618a0750ae6
children 161ebd1f3410
line wrap: on
line source

## Copyright (C) 2004 John W. Eaton
##
## This file is part of Octave.
##
## Octave is free software; you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2, or (at your option)
## any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING.  If not, write to the Free
## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
## 02110-1301, USA.

## -*- texinfo -*-
## @deftypefn {Function File} {} dir (@var{directory})
## @deftypefnx {Function File} {[@var{list}] =} dir (@var{directory})
## Display file listing for directory @var{directory}.  If a return
## value is requested, return a structure array with the fields
##
## @example
## @group
## name
## bytes
## date
## isdir
## statinfo
## @end group
## @end example
##
## @noindent
## in which @code{statinfo} is the structure returned from @code{stat}.
##
## If @var{directory} is not a directory, return information about the
## named @var{filename}.  @var{directory} may be a list of directories
## specified either by name or with wildcard characters (like * and ?)
## which will be expanded with glob.
## @seealso{ls, stat, readdir, glob, filesep}
## @end deftypefn

## Author: jwe

## XXX FIXME XXX -- this is quite slow for large directories, so perhaps
## it should be converted to C++.

function retval = dir (file)

  if (nargin == 0)
    file = '.';
  elseif (nargin > 1)
    usage ("dir (file)");
  endif

  ## prep the retval
  info = struct(zeros(0,1));

  if (ischar (file))
    if (strcmp(file, '*'))
      file = '.';
    endif
    flst = glob (file);
    nf = length (flst);

    ## determine the file list for the case where a directory is
    ## specified and that directory should be recursed into.
    if ((nf == 1) && strcmp(file, flist{1}))
      [st, err, msg] = lstat(flst{1});
      if (err < 0)
	warning("dir: nonexistent file \"%s\"", flst{i});
	nf = 0;
      elseif (st.modestr(1) == "d")
	flst = glob ([flst{1} filesep '*']);
	nf = length(flst);
      endif
    endif

    if (length(flst) > 0)
      len = zeros (nf, 1);
      finfo = cell (nf, 1);
      ## Collect results.
      for i = nf:-1:1
	fn = flst{i};
	[st, err, msg] = lstat (fn);
	if (err < 0)
	  warning ("dir: nonexistent file \"%s\"", fn);
	else
	  [dummy, fn, ext] = fileparts (fn);
	  fn = strcat (fn, ext);
	  info(i).name = fn;
	  info(i).date = strftime ("%d-%b-%Y %T", localtime (st.mtime));
	  info(i).bytes = st.size;
	  info(i).isdir = st.modestr(1) == "d";
	  info(i).statinfo = st;
	endif
      endfor

    endif
  else
    error ("dir: expecting directory or filename to be a char array");
  endif

  ## return the output arguements
  if (nargout > 0)
    ## Return the requested structure
    retval = info;
  else
    if (length(info) > 0)
      ## Print the structure to the screen
      ## XXX FIXME XXX -- need a way to neatly list these in columns.
      for i = 1:length(info)
	printf ("  %s\n", info(i).name);
      endfor
    else
      warning("dir: nonexistent file \"%s\"", file);
    endif
  endif

endfunction