Scilab 5.3.0
- Scilab Online 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
chdir
Scilab カレントディレクトリを変更する
cd
Scilab カレントディレクトリを変更する
呼び出し手順
b=chdir(path) realpath=cd(path) cd path
パラメータ
- b
chdir処理がokの場合に論理値 %t.
- path
文字列
- realpath
文字列, パス名変換の後に実際のパス名(以下参照)
説明
カレントの Scilab ディレクトリをpath
で指定したディレクトリに変更します.
パス変換が実行されるため,例えば,
SCI/modules/core/macros
は unix および windows の両方で
有効であることに注意してください.
path が空の場合, "home" ディレクトリに変更されます.
例
chdir(TMPDIR); pwd cd cd SCI
参照
<< basename | Files : Input/Output functions | copyfile >> |