next up previous contents index
Next: Dup Up: Functions and procedures Previous: CloseDir

DirName

   

Declaration:

Function DirName (Const Path : Pathstr) : Pathstr;

Description:

Returns the directory part of Path.

The directory is the part of Path before the last slash, or empty if there is no slash.

The last character of the result is not a slash, unless the directory is the root directory.

Errors:

None.

See also:

BaseName, FExpand, Dirname (1)

Example
Program Example47;

{ Program to demonstrate the DirName function. }

Uses linux;

Var S : String;

begin
  S:=FExpand(Paramstr(0));
  Writeln ('This program is in directory : ',Dirname(S));
end.



root
Fri Sep 11 18:24:36 CEST 1998