Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.2 - Français

Change language to:
English - 日本語 - Português

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Aide Scilab >> Entrées/Sorties [fichiers] > listfiles

listfiles

list files

Calling Sequence

files= listfiles(paths [,flag,flagexpand])

Arguments

paths

a string matrix giving a set of pathnames (eventually ended by a pattern built with *)

flag,flagexpand

boolean optional parameters. (default value %t).

files

a string matrix.

Description

listfiles can be used to list the files which match the patterns given by one of the paths entries. Patterns are given to the unix ls or to the windows dir commands in order to get information on files. Thus in order to write portable Scilab script valid wildcard patterns for both os are to be given. Note that Pathname conversion is performed and for example SCI/core/macros/*.sci is a valid pattern for both unix and windows.

if flag is true the pathnames given by paths are converted according to the getos() == 'Windows' value (See pathconvert). Moreover, if flagexpand is true leading strings like HOME, SCI or ~ are expanded using environment variables.

Examples

files=listfiles(['SCI/modules/core/macros/*.sci';'SCI/modules/core/macros/*.bin']);

See Also

  • findfiles — Finding all files with a given filespec
  • basename — strip directory and suffix from filenames
  • pathconvert — pathnames convertion between POSIX and windows.
<< isfile Entrées/Sorties [fichiers] listvarinfile >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Thu May 12 11:44:59 CEST 2011