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 | 31 |
Tags
- android 효과음
- dovecot
- mysql
- curl
- WebView
- chart.js
- C#
- javascript
- PHP
- 안드로이드
- 자동 생성
- 자바스크립트
- soundpool
- 안드로이드 gcm
- FCM
- html5
- not working
- Mail Server
- 안드로이드 푸시
- 안드로이드 푸쉬
- UML
- xe
- php 시큐어코딩
- 설치
- roundcube
- C# IO
- Android
- php 취약점
- 폼메일
- 우분투
Archives
- Today
- Total
그러냐
C# HttpWebRequest command to get directory listing 본문
반응형
namespace Example
{
using System;
using System.Net;
using System.IO;
using System.Text.RegularExpressions;
public class MyExample
{
public static string GetDirectoryListingRegexForUrl(string url)
{
if (url.Equals("http://www.ibiblio.org/pub/"))
{
return "<a href=\".*\">(?<name>.*)</a>";
}
throw new NotSupportedException();
}
public static void Main(String[] args)
{
string url = "http://www.ibiblio.org/pub/";
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())
{
using (StreamReader reader = new StreamReader(response.GetResponseStream()))
{
string html = reader.ReadToEnd();
Regex regex = new Regex(GetDirectoryListingRegexForUrl(url));
MatchCollection matches = regex.Matches(html);
if (matches.Count > 0)
{
foreach (Match match in matches)
{
if (match.Success)
{
Console.WriteLine(match.Groups["name"]);
}
}
}
}
}
Console.ReadLine();
}
}
}
출처 : http://stackoverflow.com/questions/124492/c-sharp-httpwebrequest-command-to-get-directory
반응형
'c#' 카테고리의 다른 글
byte[] 배열 합치기/복사 (0) | 2017.07.18 |
---|---|
c# ftp 파일&디렉토리 리스트 얻기 (0) | 2016.01.28 |
DirectShow Stream Media 다루기 (0) | 2016.01.28 |
C#에서 DirectShow를 이용한 핀 연결하기 (0) | 2016.01.28 |
C#에서 DirectShow를 다뤄보자. (2) | 2016.01.28 |