Scilab 5.3.3
- Scilab help
- Files : Input/Output functions
- basename
- chdir
- copyfile
- createdir
- deletefile
- dir
- dirname
- dispfiles
- fileext
- fileinfo
- fileparts
- filesep
- findfiles
- fprintf
- fprintfMat
- fscanf
- fscanfMat
- fullfile
- fullpath
- get_absolute_file_path
- getdrives
- getlongpathname
- getrelativefilename
- getshortpathname
- %io
- isdir
- isfile
- listfiles
- listvarinfile
- ls
- maxfiles
- mclearerr
- mclose
- mdelete
- meof
- merror
- mfprintf
- mscanf
- mget
- mgetl
- mgetstr
- mkdir
- mopen
- movefile
- mput
- mputl
- mputstr
- mseek
- mtell
- newest
- pathconvert
- pathsep
- pwd
- removedir
- rmdir
- save_format
- scanf
- scanf_conversion
- sscanf
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
listfiles
ファイルのリスト
呼び出し手順
files= listfiles(paths [,flag,flagexpand])
パラメータ
- paths
パス名の集合を指定する文字列の行列 (多くの場合, 末尾が
*
のパターンとなります)- flag,flagexpand
オプションの論理値パラメータ(デフォルト値
%t
).- files
文字列の行列.
説明
listfiles
は,
パスエントリの指定したパターンのどれかに一致するファイル
の一覧を得るために使用されます.
パターンは,ファイルに関する情報を取得するために
Unixではls
,Windowsでは
dir
コマンドに指定されます.
このため, ポータブルなScilabスクリプトを書くためには,
両方のOSに有効なワイルドカードパターンを指定する必要があります.
パス名の変換が行われ,例えばSCI/core/macros/*.sci
はUnixとWindowsの両方で有効なパターンであることに注意してください.
flag
が真の場合,paths
で
指定したパス名は MSDOSの値に基づき変換されます
(pathconvert
参照).
さらに, flagexpand
が真の場合,
HOME
, SCI
または ~
のような
先頭文字列は環境変数により展開されます.
例
files=listfiles(['SCI/modules/core/macros/*.sci';'SCI/modules/core/macros/*.bin']);
参照
- findfiles — 指定した filespec を有する全てのファイルを見つける
- basename — ファイル名からディレクトリと接尾辞を取り除く
- pathconvert — POSIXおよびwindowsの間でパス名を変換.
<< isfile | Files : Input/Output functions | listvarinfile >> |