structdirent ** x =NULL;
int n = scandir (p, &x, NULL, alphasort);
scandir allocates memory and returns the number of entries. each entry must be free'd. See also opendir, readdir and closedir and ftw for recursive traversal.
if FindFirst(IncludeTrailingPathDelimiter(d) + '*',
faAnyFile and (not faDirectory), SR) = 0 then
repeat
x.Add(SR.Name);
until FindNext(SR) <> 0;
FindClose(SR);
A more classic implementation. It will list only files, not the names of subdirectories inside p.
uses FileUtil;
x := FindAllFiles(d, '*', False);
use File::Basename;
my @x = map {basename $_} glob("$d/*");
opendirmy $dh, $d ordie"Could not open $d for reading: $!\n";
@x = readdir $dh;
closedir $dh;
if FindFirst(IncludeTrailingPathDelimiter(d) + '*',
faAnyFile and (not faDirectory), SR) = 0 then
repeat
x.Add(SR.Name);
until FindNext(SR) <> 0;
FindClose(SR);