IFileInfo.DirectoryName

Syntax

DirectoryName: String;

Description

The DirectoryName property returns the full path and name of the directory, in which a file is located.

Example

Sub UserProc;
Var
    FileInf: IFileInfo;
    s: String;
Begin
    FileInf:=New FileInfo.Attach("c:\Work\1.txt");
    If FileInf.Exists Then
        s:=FileInf.DirectoryName;
    End If;
    Dispose FileInf;
End Sub UserProc;

After executing the example, the "s" variable contains complete path and name of the folder, in which the 1.txt file is located.

See also:

IFileInfo