프로그래밍 노트

델파이에서 프로그램이 있는 패스 얻기 본문

델파이

델파이에서 프로그램이 있는 패스 얻기

띠리 2007. 10. 22. 16:30

델파이에서 프로그램이 있는 패스(디렉토리) 얻기

procedure TForm1.FormCreate(Sender: TObject);
var
  CurrentPath : array [0..256] of char;
begin
  // 프로그램이 있는 현재의 디렉토리 정보 얻기
  GetCurrentDirectory(sizeof(CurrentPath), CurrentPath);
  Form1.Caption := CurrentPath;

end;
Comments