IFileInfoList.Count

Syntax

Count: Integer;

Description

The Count property returns the number of elements in the collection.

Example

Sub Main;

Var

DirInfo: IDirectoryInfo;

FileList: IFileInfoList;

i: Integer;

Begin

DirInfo:=New DirectoryInfo.Attach("c:\New_folder");

If DirInfo.Exists Then

FileList:=DirInfo.GetFiles("*");

i:=FileList.Count;

End If;

Dispose DirInfo;

End Sub Main;

After executing the example the "i" variable contains the number of files in the directory C:\New_folder.

See also:

IFileInfoList