Q&A

  • NMFTP - 서버에 디렉토리 존재여부를 알 수 있는 방법은??
MakeDirectory 하기 전에 디렉토리가 존재하는지 알아보려면 어떻게 해야하나요...
디렉토리가 존재하면 에러가 생기든데...
어떻게 해결하면 좋을지... - -
1  COMMENTS
  • Profile
    조성필 2002.10.01 09:59

    var
    TheDir : string;
    i:integer;
    begin
      TheDir:='test';
      for i:=0 to (nmftp.FTPDirectoryList.name.Count-1) do
        if  nmftp.FTPDirectoryList.name[i]=TheDir then
        begin
          showmessage('같은디렉토리 있네~');
        end;

    같은 디렉토리가 존재할경우 메시지를 보여주는 소스입니다.
    ^^