make_absolute_filename

Creates an absolute path with input name, without checks made for the existance of the path on disk.

Syntax

R = make_absolute_filename(name)

Inputs

name
The name for constructing the absolute path, R. The existence of the path is not verified by this command.
Type: string

Outputs

R
Absolute path containing name.
Type: string

Examples

Creating an absolute path on windows:
R = make_absolute_filename('test.txt')
R = c:\Program Files\test.txt