MATLAB Function Reference |
Syntax
fullfile('dir1','dir2',...,'filename') f = fullfile('dir1','dir2',...,'filename')
Description
fullfile(dir1,dir2,...,filename)
從指定的路徑和檔名中建立完整的檔案名稱。這個概念和下面這行的意義相同:
f =
[dir1 dirsep dir2 dirsep ... dirsep filename]
Examples
f = fullfile('C:','Applications','matlab','myfun.m') f = C:\Applications\matlab\myfun.m
下列二個範例在UNIX下可得到相同的結果,但只有第二個範例適用在所有作業系統平台上。
fullfile(matlabroot,'toolbox/matlab/general/Contents.m')
and
fullfile(matlabroot,'toolbox','matlab','general','Contents.m')
See Also
full | func2str |