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
mclose
オープンされているファイルを閉じる
呼び出し手順
err=mclose([fd]) mclose('all')
パラメータ
- fd
スカラー. 関数
mopen
により返されたfd
パラメータはファイルディスクリプタ(正の整数)として使用されます.- err
スカラー. エラーインジケータ : ベクトル
説明
mclose
はmopen
によりオープンされた
ファイルを閉じるために使用されます.
fd が省略された場合, mclose
は直近にオープンされたファイルを閉じます.
mclose('all')
は
file('open',..)
または mopen
により
オープンされた全てのファイルを閉じます.
これをScilabスクリプトファイルの中で使用する場合には注意してください.
スクリプト自体も閉じられるため, Scilab は
mclose('all')
の後に書かれたコマンドを実行しません.
参照
<< mclearerr | Files : Input/Output functions | mdelete >> |