Change the current working directory to dir.
If dir is omitted, the current directory is changed to the user’s home directory ("~"
).
For example,
cd ~/octave
changes the current working directory to ~/octave. If the directory does not exist, an error message is printed and the working directory is not changed.
chdir
is an alias for cd
and can be used in all of the same calling formats.
Compatibility Note: When called with no arguments, MATLAB prints the present working directory rather than changing to the user’s home directory.
List directory contents.
The ls
command is implemented by calling the native operating system’s directory listing command—available options will vary from system to system.
Filenames are subject to shell expansion if they contain any wildcard characters ‘*’, ‘?’, ‘[]’. To find a literal example of a wildcard character the wildcard must be escaped using the backslash operator ‘\’.
If the optional output list is requested then ls
returns a character array with one row for each file/directory name.
Example usage on a UNIX-like system:
ls -l -| total 12 -| -rw-r--r-- 1 jwe users 4488 Aug 19 04:02 foo.m -| -rw-r--r-- 1 jwe users 1315 Aug 17 23:14 bar.m
See also: dir, readdir, glob, what, stat, filesep, ls_command.
Query or set the shell command used by Octave’s ls
command.
See also: ls.
Display file listing for directory directory.
If directory is not specified then list the present working directory.
If a return value is requested, return a structure array with the fields
File or directory name.
Location of file or directory
Timestamp of file modification (string value).
File size in bytes.
True if name is a directory.
Timestamp of file modification as serial date number (double).
Information structure returned from stat
.
If directory is a filename, rather than a directory, then return information about the named file. directory may also be a list rather than a single directory or file.
directory is subject to shell expansion if it contains any wildcard characters ‘*’, ‘?’, ‘[]’. To find a literal example of a wildcard character the wildcard must be escaped using the backslash operator ‘\’.
Note that for symbolic links, dir
returns information about the file that the symbolic link points to rather than the link itself. However, if the link points to a nonexistent file, dir
returns information about the link.
© 1996–2018 John W. Eaton
Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies.
Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one.Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions.
https://octave.org/doc/interpreter/Current-Working-Directory.html