Scilab 6.0.1
- Scilab Help
- Files : Input/Output functions
- Directory
- Paths - Filenames
- copyfile
- deletefile
- dispfiles
- fileinfo
- findfiles
- fprintfMat
- fscanfMat
- getURL
- getmd5
- %io
- isfile
- listfiles
- listvarinfile
- mclearerr
- mclose
- mdelete
- meof
- merror
- mfprintf
- mfscanf
- mget
- mgetl
- mgetstr
- mopen
- movefile
- mput
- mputl
- mputstr
- mseek
- mtell
- newest
- save format
- scanf
- scanf_conversion
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
newest
returns newest file of a set of files
Syntax
k = newest(paths) k = newest(path1, path2, ..., pathn)
Arguments
- k
an integer: the index of the newest file.
- paths
a character string vector,
paths(i)
is the pathname ofi
-th file.- pathi
a character string, the pathname of
i
-th file
Description
Given a set of pathnames newest
returns the index of the newest
one. Non existent files are supposed to be the oldest.
Examples
newest('SCI/modules/graphics/macros/bode.sci','SCI/modules/graphics/macros/bode.bin') newest(['SCI/modules/graphics/macros/bode.sci','SCI/modules/graphics/macros/bode.bin']) newest('SCI/modules/graphics/macros/bode.'+['sci','bin'])
See also
- fileinfo — provides information about a file
Report an issue | ||
<< mtell | Files : Input/Output functions | save format >> |