Q&A

  • 도스형식의 폴더명 구하기방법 가르쳐 주세요
윈도우98에서요

"c:My documents" 폴더명을 도스에서 보면은
"c:Mydocu~1"로 표기되잖아요

윈도우98에서 이렇게 구하는 명령어좀 가르쳐 주세요

즐코되세요
2  COMMENTS
  • Profile
    최용일 2002.05.23 04:08
    안녕하세요. 최용일입니다.

    GetShortPathName이라는 API함수를 쓰세요...

    var
        LongPath: string;
        ShortPath: array[0..1023] of Char;
    begin
        LongPath := 'C:Program FilesBorlandDelphi5Delphi.exe';
        GetShortPathName(PChar(LongPath), ShortPath, SizeOf(ShortPath));
        ShowMessage('도스패스는: ' + ShortPath)
    end;

    ^^ 항상 즐코하세요...

  • Profile
    강철구 2002.05.23 07:50