IFileSystemInfo.FullName

Syntax

FullName: String;

Description

The FullName property returns a full path and a file name.

Example

Sub UserProc;
Var
    Dir: IDirectoryInfo;
    FileSInfo: IFileSystemInfo;
    s: String;
Begin
    Dir:=New DirectoryInfo.Attach("c:\New_folder");
    If Dir.Exists And (Dir.GetFiles("*").Count<>0Then
        s:=Dir.GetFiles("*").Item(0).Extension;
    End If;
    Dispose Dir;
End Sub UserProc;

After executing the example, the "s" variable contains complete path and file name of the first file if the New_folder directory exists and contains files.

See also:

IFileSystemInfo