Scilab 5.3.1
- 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
movefile
ファイルまたはディレクトリを移動する
呼び出し手順
movefile('source','destination') [status,message] = movefile('source','destination')
説明
movefile('source','destination') はファイルまたはディレクトリ, 移動元(およびサブディレクトリ) をファイルまたはディレクトリ,移動先に移動します.
移動元がディレクトリの場合, 移動先にファイルを指定することは できません. movefileは警告を発生せずに既存のファイルを置換します.
[status, message] = movefile('source','destination') は, 移動元から移動先に移動し,ステータスとメッセージを返します.
どのようなオペレーティン部システムであろうと, 移動に成功した場合,ステータスは1となり, メッセージは空になります ; 移動に失敗した場合, ステータスは0となり,メッセージは空でなくなります.
例
copyfile(SCI+"/etc/scilab.start",TMPDIR+"/scilab.start") [status,message] = movefile(TMPDIR+"/scilab.start",TMPDIR+"/renamed_scilab.start")
参照
- copyfile — ファイルをコピー
作者
- Allan CORNET
<< mopen | Files : Input/Output functions | mput >> |