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
Scilab help >> Files : Input/Output functions > getlongpathname
getlongpathname
get long path name (Only for Windows)
Calling Sequence
longpath=getlongpathname(shortpath) [longpath,bOK]=getlongpathname(shortpath)
Arguments
- shortpath
A character string or matrix of strings the short path
- longpath
A character string or matrix of strings the long path
- bOK
A boolean %T or a matrix of boolean if path has been converted else %F
Description
The getlongpathname primitive converts the specified path to its long form. It no long path is found, this primitive returns the specified name.
Examples
[longpath,bOK]=getlongpathname(SCI) [longpaths,bOKs]=getlongpathname([SCI;SCI])
See Also
- getshortpathname — get short path name (Only for Windows)
Authors
Allan CORNET
| << getdrives | Files : Input/Output functions | getrelativefilename >> |