程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> 用ListView控件列舉目錄中的文件

用ListView控件列舉目錄中的文件

編輯:Delphi
用ListVIEw控件列舉指定目錄中的文件,以列舉C盤文件目錄為例子:


 procedure TForm1.Button1Click(Sender: TObject);
var
   SearchRec : TSearchRec;
   Path : String;
   Attr : integer;
   Found : integer;
begin
   Path := 'c:\*.*';//設定要顯示的路徑
   Attr := faAnyFile;
   Found := FindFirst(Path, Attr, SearchRec);//查找文件
   while Found = 0 do
   begin
       ListVIEw1.Items.Add; //添加內容
       ListView1.Items[ListVIEw1.Items.Count-1].Caption := (SearchRec.Name);
       Found := FindNext(SearchRec);
   end;
   FindClose(SearchRec);//停止查找
end;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved