fullfile: MATLAB fullfile function

View source: R/fullfile.R

fullfileR Documentation

MATLAB fullfile function

Description

Contructs path to a file from components in platform-independent manner

Usage

fullfile(...)

Arguments

...

character strings representing path components

Details

Builds a full filename from the directories and filename specified. This is conceptually equivalent to


    paste(dir1, dir2, dir3, filename, sep=filesep)

  

with care taken to handle cases when directories begin or end with a separator.

Value

Returns character vector of arguments concatenated term-by-term and separated by file separator if all arguments have a positive length; otherwise, an empty character vector.

Author(s)

P. Roebuck proebuck1701@gmail.com

See Also

fileparts, filesep

Examples

fullfile("", "etc", "profile")	# /etc/profile

matlab documentation built on June 2, 2022, 1:09 a.m.