closes opened files
err = mclose(fd) err = mclose(paths) mclose('all')
a matrix of integers: the fd
matrix returned by the function mopen
is used as a matrix of file descriptors.
a matrix of strings: the absolute paths of files to be closed.
a matrix of integers: error indicators.
mclose
must be used to close files opened by
mopen
. If fd
is omitted
mclose
closes the last opened file.
mclose('all')
closes all files opened by
file('open',..)
or mopen
.
![]() | Be careful with this use of mclose because when
it is used inside a Scilab script file, it also closes the script and
Scilab will not execute commands written after
mclose('all') . |