Function FExpand (Const Path: Pathstr) : pathstr;
Expands Path to a full path, starting from root, eliminating directory references such as . and .. from the result.
None
Program Example45; { Program to demonstrate the FExpand function. } Uses linux; begin Writeln ('This program is in : ',FExpand(Paramstr(0))); end.