本文整理自网络,侵删。
procedure TForm1.Button1Click(Sender: TObject);var FileToFind: string;begin FileToFind := SysUtils.FileSearch(Edit1.Text, GetCurrentDir); if FileToFind = '' then ShowMessage('Couldn''t find ' + Edit1.Text + '.') else ShowMessage('Found ' + FileToFind + '.');end;
procedure TForm1.FormCreate(Sender: TObject);begin Label2.Caption := GetCurrentDir;end;
相关阅读 >>
Delphi firedac fdconnection 事务
Delphi dateof、timeof、yearof、monthof、weekof、dayof、hourof、minuteof、secondof、millisecondof �c 提取时间成分
更多相关阅读请进入《Delphi》频道 >>