Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- roundcube
- curl
- chart.js
- Android
- 우분투
- php 취약점
- 안드로이드 푸쉬
- not working
- xe
- Mail Server
- FCM
- html5
- 안드로이드 gcm
- C#
- 안드로이드
- dovecot
- 설치
- 자동 생성
- WebView
- PHP
- 자바스크립트
- 폼메일
- C# IO
- php 시큐어코딩
- UML
- soundpool
- javascript
- mysql
- android 효과음
- 안드로이드 푸시
Archives
- Today
- Total
목록c# ftp 파일&디렉토리 리스트 얻기 (1)
그러냐
c# ftp 파일&디렉토리 리스트 얻기
Uri ftpUri = new Uri("ftp://xxx.xxx.xxx.xxx/"); FtpWebRequest reqFtp = (FtpWebRequest)WebRequest.Create(ftpUri); reqFtp.Credentials = new NetworkCredential("ID", "PASS"); reqFtp.Timeout = 10000; reqFtp.Method = WebRequestMethods.Ftp.ListDirectory; FtpWebResponse resFtp = (FtpWebResponse)reqFtp.GetResponse(); StreamReader reader; reader = new StreamReader(resFtp.GetResponseStream()); string strDa..
c#
2016. 1. 28. 11:37