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