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
- curl
- 우분투
- Mail Server
- 자바스크립트
- html5
- FCM
- Android
- 자동 생성
- 안드로이드 gcm
- 안드로이드 푸시
- android 효과음
- not working
- C# IO
- xe
- WebView
- dovecot
- mysql
- 안드로이드
- 설치
- php 시큐어코딩
- chart.js
- C#
- 폼메일
- roundcube
- 안드로이드 푸쉬
- javascript
- PHP
- soundpool
- php 취약점
- UML
Archives
- Today
- Total
목록C# HttpWebRequest command to get directory listing (1)
그러냐
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 "(?.*)"; } throw new NotSupportedException(); } public static void Main(String[] args) { string url = "http://www.ibiblio.org/pub/"; HttpWebRequ..
c#
2016. 1. 28. 11:36