본문 바로가기
Application/Delphi Lecture

파일 찾기

by 현이빈이 2008. 7. 24.
반응형
procedure TForm1.Button1Click(Sender: TObject);
    var TheResult : String; 
    begin 
    TheResult := FileSearch('netscape.exe', 'c:\ProgramFiles\Netscape\Communicator\Program; + c:\windows'); 
    if TheResult = '' then 
    ShowMessage('Netscape was not found in this path.') 
    else 
    Label1.Caption := TheResult; 
    end; 
반응형