- Ajuda Scilab
- Arquivos : funções de Entrada/Saída
- Directory
- Paths - Filenames
- fileinfo
- getmd5
- newest
- sscanf
- copyfile
- deletefile
- dispfiles
- findfiles
- fprintf
- fprintfMat
- fscanf
- fscanfMat
- %io
- isfile
- listfiles
- listvarinfile
- maxfiles
- mclearerr
- mclose
- mdelete
- meof
- merror
- mfprintf
- mfscanf
- mget
- mgetl
- mgetstr
- mopen
- movefile
- mput
- mputl
- mputstr
- mseek
- mtell
- save format
- scanf
- scanf_conversion
Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
movefile
moves file or directory
Calling Sequence
movefile(source, destination) [status, message] = movefile(source, destination)
Arguments
- source
- a character string. 
- destination
- a character string. 
- status
- an integer: the status of the operation. 
- message
- a character string: a message about an error. 
Description
movefile(source, destination) moves the file or directory 
            source (and subdirectories) to the file or directory 
            destination.
If source is a directory, destination cannot be a file.
            
|  | movefilereplaces existing files without 
                warning. | 
[status, message] = movefile(source, destination) moves source to destination, returning the status and a message.
Whatever the operating system, if the move succeeds, the 
            status is 1 and the message is 
            empty; if the move fails, the status is 0 and the 
            message is not empty.
Examples
copyfile(SCI+"/etc/scilab.start",TMPDIR+"/scilab.start") [status,message] = movefile(TMPDIR+"/scilab.start",TMPDIR+"/renamed_scilab.start")
See Also
- copyfile — copies a file
| Report an issue | ||
| << mopen | Arquivos : funções de Entrada/Saída | mput >> |