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
- javascript
- 안드로이드 gcm
- C#
- not working
- 설치
- soundpool
- FCM
- 안드로이드
- xe
- android 효과음
- 우분투
- roundcube
- 폼메일
- 자바스크립트
- UML
- 자동 생성
- chart.js
- Android
- 안드로이드 푸쉬
- curl
- PHP
- 안드로이드 푸시
- Mail Server
- html5
- php 취약점
- mysql
- C# IO
- dovecot
- WebView
- php 시큐어코딩
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