주니봉
  • Check if directory exists on FTP server
    2016년 07월 07일 14시 09분 38초에 업로드 된 글입니다.
    작성자: 봉주니
        public bool DirectoryExists(string directory)
        {
            bool directoryExists;
    
            var request = (FtpWebRequest)WebRequest.Create(directory);
            request.Method = WebRequestMethods.Ftp.ListDirectory;
            request.Credentials = new NetworkCredential("user", "pass");
    
            try
            {
                using (request.GetResponse())
                {
                    directoryExists = true;
                }
            }
            catch (WebException)
            {
                directoryExists = false;
            }
    
            return directoryExists;
        }

    In this case:

    directory = @"ftp://ftp.example.com/Rubicon/";


    반응형

    'C#' 카테고리의 다른 글

    마우스 좌표값 얻기  (0) 2016.04.05
    Bitmap객체를 이용한 이미지 분할  (0) 2016.03.10
    xml 쓰기 읽기  (0) 2015.12.16
    기상날씨 xml 파싱  (0) 2015.12.14
    PictureBox 이미지 다른 이름으로 저장  (1) 2015.10.19
    댓글