Scilab 5.3.3
- 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
fullfile
Build a full filename from parts
Calling Sequence
f = fullfile(varargin)
Arguments
- varargin
all directories and filename used to build the full filename (at least one directory and filename)
- f
full filename
Description
f = fullfile(varargin)
builds a full filename taking care of platform on which it is run
and handling the cases when the directories begin or end with a directory separator.
Examples
f=fullfile("/home/","\scilab","macros","\util","fullfile.sci") f=fullfile("C:","\scilab","macros","\util","fullfile.sci")
See Also
- pathconvert — pathnames convertion between POSIX and windows.
- fileparts — returns the path, filename and extension for a file path
Authors
- V.C.
<< fscanfMat | Files : Input/Output functions | fullpath >> |