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