zoukankan      html  css  js  c++  java
  • Delphi遍历文件夹及子文件夹(可查找固定格式文件)

    Delphi遍历文件夹及子文件夹

    {-------------------------------------------------------------------------------
    过程名:    MakeFileList 遍历文件夹及子文件夹
    作者:      SWGWEB
    日期:      2007.11.25
    参数:      Path,FileExt:string   1.需要遍历的目录 2.要遍历的文件扩展名
    返回值:    TStringList

       Eg:ListBox1.Items:= MakeFileList( 'E:极品飞车','.exe') ;
           ListBox1.Items:= MakeFileList( 'E:极品飞车','.*') ;
    -------------------------------------------------------------------------------}

    function MakeFileList(Path,FileExt:string):TStringList ;
    var
    sch:TSearchrec;
    begin
    Result:=TStringlist.Create;
    
    if rightStr(trim(Path), 1) <> '' then
        Path := trim(Path) + ''
    else
        Path := trim(Path);
    
    if not DirectoryExists(Path) then
    begin
        Result.Clear;
        exit;
    end;
    
    if FindFirst(Path + '*', faAnyfile, sch) = 0 then
    begin
        repeat
           Application.ProcessMessages;
           if ((sch.Name = '.') or (sch.Name = '..')) then Continue;
           if DirectoryExists(Path+sch.Name) then
           begin
             Result.AddStrings(MakeFileList(Path+sch.Name,FileExt));
           end
           else
           begin
             if (UpperCase(extractfileext(Path+sch.Name)) = UpperCase(FileExt)) or (FileExt='.*') then
             Result.Add(Path+sch.Name);
           end;
        until FindNext(sch) <> 0;
        SysUtils.FindClose(sch);
    end;
    end;

     

  • 相关阅读:
    CI平台
    【转】深藏不露,处世之道
    编写vscode插件
    css背景图宽度只适应,高度不变
    vue实现pc端无限加载功能
    box-shadow比较美观的阴影
    Nuxt.js项目实战
    vue图片放大镜效果
    vue分页组件
    为什么计算机中的小数位无法精确
  • 原文地址:https://www.cnblogs.com/qingsong/p/3507260.html
Copyright © 2011-2022 走看看