delphi – FindFirst应该按字母顺序返回找到的文件吗?

前端之家收集整理的这篇文章主要介绍了delphi – FindFirst应该按字母顺序返回找到的文件吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我曾经尝试过FindFirst按字母顺序找到文件,但最近我发现虽然大多数情况下都是如此,但是有些文件不按字母顺序排列.
if FindFirst( AProgramPath,faAnyFile,ASearchRec ) = 0 then
repeat
  AFilename := ASearchRec.name;
until FindNext( ASearchRec ) <> 0;
FindClose( ASearchRec );

在这里的特定文件夹中有大约300个文本文件,但是大约8-10个文件以正确的字母顺序返回.

如果findfirst不按字母顺序返回文件,是否有一种方法可用于按字母顺序对文件内容进行排序,以便findfirst按字母顺序返回文件

问候,

法案

解决方法

FindFirst函数不对搜索结果进行排序,但您可以使用TStringList对文件进行排序.
Procedure GetOrderFiles();
var
 ListFiles : TStringList;
 result    : integer;
 ASearchRec: TSearchRec;
begin
 ListFiles         := TStringList.Create;
 try
   ListFiles.sorted  := True;  
   result        := findFirst(AProgramPath,ASearchRec );
   try
     while result = 0 do
     begin
      if (ASearchRec.name <> '.') and (ASearchRec.name <> '..') then
      ListFiles.add(ASearchRec.name);
      result:=FindNext(ASearchRec );
     end;
   finally 
     FindClose(ASearchRec );
   end;  

   //process your files

   //....
 finally
    ListFiles.free;
 end;
end;
原文链接:https://www.f2er.com/delphi/102461.html

猜你在找的Delphi相关文章