findfirstfile的问题和遍历目录

自己的遍历某目录下文件

procedure TForm1.Button1Click(Sender: TObject);
var
  data:   WIN32_FIND_DATA ;
  fhandle: cardinal;
  ret:bool;
begin
        fhandle:= FindFirstFile('c://temp//test//*.*',data);
        if (handle= INVALID_HANDLE_VALUE) then
        begin
           MessageDlg('run error', mtConfirmation,[mbOK] , 0);
           exit;
        end;
        ret:=true;
        while(ret)  do
        begin
           if((data.dwFileAttributes <>FILE_ATTRIBUTE_DIRECTORY) and
           (data.dwFileAttributes <>FILE_ATTRIBUTE_READONLY) and
           (data.dwFileAttributes <>FILE_ATTRIBUTE_HIDDEN) and
           (data.dwFileAttributes <>FILE_ATTRIBUTE_SYSTEM)) then
           begin
                MessageDlg(data.cFileName, mtConfirmation,[mbOK] , 0);
           end;
           ret:=FindNextFile(fhandle,data);
        end;
       windows.FindClose(fhandle);

收藏的别人的findfirstfile

  procedure   TForm1.SearchFile(beginPath:   PChar;   NowList:   TStringList);  
  var  
      searchrec:_WIN32_FIND_DATAA;  
      SearchHandle:cardinal;  
      searching:LongBool;  
      NowPath,AddPath:Pchar;  
  begin  
      GetMem(Nowpath,255);  
      strcopy(NowPath,Beginpath);  
      StrCat(NowPath,'*.*');  
      SearchHandle:=findfirstfile(NowPath,searchrec);  
      searching:=false;  
      if   SearchHandle<>INVALID_HANDLE_VALUE   then   begin  
          searching:=true;  
      end;  
      While   searching   do   begin  
          if   SearchREc.dwFileAttributes   =   FILE_ATTRIBUTE_DIRECTORY   then   begin  
              if   (string(SearchRec.cFileName)<>'.')   and   (string(SearchRec.cFileName)<>'..'   )   then   begin  
                  getmem(AddPath,255);  
                  strcopy(addpath,beginpath);  
                  strcat(addpath,searchRec.cFileName);  
                  strcat(addpath,'/');  
                  searchfile(addpath,NowList);  
                  freemem(addpath);  
              end;  
          end   else   begin  
              getmem(AddPath,255);  
              strcopy(addpath,beginpath);  
              strcat(addpath,searchRec.cFileName);  
              NowList.Add(string(addpath));  
              freemem(addpath);  
          end;  
          searching:=findnextfile(SearchHandle,Searchrec);  
      end;  
      windows.findclose(Searchhandle);  
      FreeMem(Nowpath);  
  end;  
   
  procedure   TForm1.Button1Click(Sender:   TObject);  
  var  
      MyList:TStringList;  
      i:integer;  
  begin  
    try  
      MyList:=TStringList.Create   ;  
      //注意在此,应该确保调用参数的正确,没有检测哦  
      SearchFile('c:/chenhu2/',MyList);  
      for   i:=0   to   Mylist.Count   -1   do   begin  
          Listbox1.Items.Add(MyList[i]);  
      end;  
    finally  
      MyList.Free   ;  
    end;  
  end;   
 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值