Q&A

  • 디렉토리 생성방법 좀 알려주세요,,,
하, 안녕하세요,,

cd에서 내용읽어 디렉토리 자동생성하여 copy하는 것좀

알려주세요,,

갈켜주세요,,

2  COMMENTS
  • Profile
    Black}{ole 2000.12.08 18:22
    안녕하세요. ^^

    델파이 도움말에 나와있는 예제입니다.

    uses FileCtrl;



    procedure TForm1.Button1Click(Sender: TObject);

    begin

    if not DirectoryExists('c:temp') then //디렉토리가 존재하는 여부?

    if not CreateDir('C:temp') then //존재하지않음.. 디렉토리 생성

    raise Exception.Create('Cannot create c:temp'); //생성하는 실패하면.. 에러발생

    end;





    그럼..20000.

  • Profile
    델파女 2000.12.08 19:03
    허궁,,, 초보가 맘만 급해서,,,

    도움말 기능도 안봤네요,,

    죄송,, 글구 감사,,,^^