Scilab-Branch-5.3-GIT
- 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
basename
ファイル名からディレクトリと接尾辞を取り除く
呼び出し手順
files= basename(files[,flag [,flagexpand]])
パラメータ
- files
ファイル名の集合を指定する文字列行列.
- flag,flagexpand
オプションの論理値パラメータ. (デフォルト値
%t
).- files
文字列行列.
説明
basename
は指定したファイル名の
エントリの基本部分を返します.
flag
が真の場合,ファイルは
MSDOS
変数で指定した目標型にまず変換されます.
さらに, flagexpand
が真の場合,
HOME
, SCI
または ~
のような基準となる変数は環境変数により展開されます.
例
files=basename('SCI/modules/fileio/macros/poo.sci') files=basename('SCI/modules\fileio/macros/poo.sci') files=basename('SCI/modules\fileio/macros/poo.sci.k')
参照
- listfiles — ファイルのリスト
- pathconvert — POSIXおよびwindowsの間でパス名を変換.
- fileparts — ファイルパスのパス,ファイル名,拡張子を返す
<< Files : Input/Output functions | Files : Input/Output functions | chdir >> |