本文整理自网络,侵删。
procedure TForm1.Button1Click(Sender: TObject);
var
ss:Tsearchrec;
filepath:string;
begin
filepath:=Edit1.Text;
listbox1.Items.Clear;
if findfirst(filepath+'*.*',faAnyFile,ss)=0 then
begin
if not ((ss.Attr and fadirectory)=fadirectory) then
listbox1.Items.Add(ss.Name);
while findnext(ss)=0 do
begin
if not ((ss.attr and fadirectory)=fadirectory) then
listbox1.Items.Add(ss.Name);
end;
findclose(ss);
end;
end;
相关阅读 >>
Delphi通过将数据放入exe的资源信息中的方式制作自已的安装工具
Delphi idhttp最简洁的修改和取得cookie例子
更多相关阅读请进入《Delphi》频道 >>