delphi 查找目录下文件(多文件查找)


本文整理自网络,侵删。

 

【跟随万一老师的足迹】查找目录下文件,在万一老师的基础上升级下,支持多文件查找 - 文件操作(一)

 

//sysGetFileList(List,'c:\','*.doc,*.exe');  List通过查找添加多文件

//sysGetFileList(List,'c:\','*.doc');   List通过查找添加单文件

procedure sysGetFileList(List: TStrings; SourFile,FileName: string);

var

  S_Path: String;

  TmpList,S_FileList: TStringList;

  FileRec,SubFileRec: TSearchRec;

  I: Integer;

begin

  S_Path := IncludeTrailingPathDelimiter(Trim(SourFile));     //单元SysUtils中判断末尾是否包含文件夹路径符号'\',没有的则补全

  if not DirectoryExists(S_Path) then

  begin

    List.Clear;

    Exit;

  end;

 

  S_FileList := TStringList.Create;

  try

    S_FileList.CommaText := FileName;

 

    TmpList := TStringList.Create;

    for I := 0 to S_FileList.Count - 1 do

    begin

      if FindFirst(S_Path + S_FileList[I],faAnyFile,FileRec) = 0 then

      repeat

        if ((FileRec.Attr and faDirectory) <> 0) then

        begin

          if ((FileRec.Name <> '.') and (FileRec.Name <> '..')) then

            sysGetFileList(TmpList,IncludeTrailingPathDelimiter(S_Path + FileRec.Name),FileName);

        end

        else

        begin

          if ((FileRec.Attr and faDirectory) = 0) then

            TmpList.Add(S_Path + FileRec.Name);

        end;

      until FindNext(FileRec) <> 0;

    end;

    FindClose(FileRec.FindHandle);

 

    if TmpList.CommaText <> '' then     //空文件夹不添加路径

    begin

      if List.CommaText <> '' then

        List.CommaText := List.CommaText + List.Delimiter + TmpList.CommaText

      else

        List.CommaText := TmpList.CommaText;

    end;

  finally

    FreeAndNil(TmpList);

    FreeAndNil(S_FileList);

  end;

end;

 

相关阅读 >>

Delphi 详解 enumwindows 与 enumwindowsproc

Delphi得到字符串中第一个汉字的位置

Delphi tstreamreader 和tstreamwriter

Delphi winapi: loadstring - 从资源中载入字符串

Delphi 使用firedac打开sqlite数据库韩文、阿拉伯文出现乱码的处理方法

Delphi 字符串的分割

Delphi android应用程序的关闭退出

Delphi 在 api 函数中使用 pchar 参数的几种方法

Delphi xe8 支持md5

Delphi实现进制转化(2进制,8进制,10进制,16进制)

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...