DevHyun

윈도우 탐색기에서 특정 Directory 열기 본문

Delphi

윈도우 탐색기에서 특정 Directory 열기

D3V3L0P3R 2020. 10. 29. 09:41

 

 

파일 copy나 move 후 윈도우 탐색기에서 특정 경로의 directory를 오픈하고 싶을때

 

uses ..., shellapi

...

..

.

procedure TForm1.Button1Click(Sender: TObject);

begin

     ShellExecute(Handle, 'open', PChar('경로'), nil, nil, SW_SHOWNORMAL);

end;

Comments