Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.0 - English

Change language to:
Français - 日本語 - 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

Scilab Help >> Files : Input/Output functions > Directory > ls

ls

shows files

Syntax

files = ls [path]
files = ls( [path] )

Arguments

path

a string matrix giving a directory pathname (eventually ended by a pattern built with *). Default value is . (a dot).

files

a string column vector. By default it contains a column formatted output.

Description

ls can be used to list the files which match the patterns given by the path argument. 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/modules/core/macros/*.sci is a valid pattern for both Unix and Windows.

If you want to get a vector of all files matching a pattern use preferably the listfiles or the dir function.

Please note that starting from the version 5.0 of Scilab, the second input argument has been removed (a sequence of strings which can be added under Unix systems: the Unix ls command options). This option has been removed mainly for security and portability reasons.

Examples

ls
ls SCI/modules/core/macros/*.sci
x=ls('SCI/modules/core/macros/*.sci')

See also

  • listfiles — list of files
  • findfiles — finding all files with a given file specification
  • dir — gets file list
  • fileinfo — provide information about some files of any type
Report an issue
<< isdir Directory mkdir >>

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:
Tue Feb 25 08:49:20 CET 2020