Q&A

  • 실행파일명으로 디렉토리찾기
실행파일명은 TelephoNes.exe이거든요.

실행파일명만으로 어느디렉토리밑에 있는지를 알고 싶거든요?

1  COMMENTS
  • Profile
    Mr.Q 2000.11.16 06:28
    호야 wrote:

    > 실행파일명은 TelephoNes.exe이거든요.

    > 실행파일명만으로 어느디렉토리밑에 있는지를 알고 싶거든요?



    s:=ParamStr(0);

    ShowMessage(s);



    s:=Application.ExeName;

    ShowMessage(s);



    s:=extractFilePath(Application.ExeName);

    ShowMessage(s);



    위에거 한번 실행해보세요.