Navigation Menu Search PhysiologyWeb
PhysiologyWeb Logo Search PhysiologyWeb
   
— share —
Share on Facebook    Share on X    Share on LinkedIn    Share on Pinterest    Share on Reddit    Email    Copy URL
function DirectoryIsEmpty(Directory: String): Boolean;
begin
DirectoryIsEmpty := False;

If DirectoryExists(Directory) = True then
begin
If TDirectory.IsEmpty(Directory) = True then DirectoryIsEmpty := True;
//TDirectory record is found in the IOUtils unit
end;
end;




Posted: Sunday, May 21, 2023
Last updated: Tuesday, March 18, 2025
— share —
Share on Facebook    Share on X    Share on LinkedIn    Share on Pinterest    Share on Reddit    Email    Copy URL