Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 서진호
- winmodev
- 마이크로소프트
- 쉐어포인트코리아
- 거제도
- 훈스닷넷
- UX베이커리
- 윈도우모바일
- 안드로이드
- 윈도우폰7
- 실버라이트 코리아
- 지승욱
- 신석현
- 김춘배
- 신동혁
- 윈모데브
- 헤이맨
- 소년포비
- 루나네스
- 윈도우폰
- MIX10
- 옴니아2
- 소년포비소프트
- 주신영
- 윈도데브
- 스마트폰
- 윈도우 모바일
- 황광진
- windows mobile 6.5
- 데브피아
Archives
- Today
- Total
목록[C#] 디렉토리 추가 / 삭제 / 이동 (1)
소년포비의 세계정복!!
[C#] 디렉토리 추가 / 삭제 / 이동
string strDir = @"D:\MyTemp"; string strSubDir = "Sub"; DirectoryInfo DirInfo = new DirectoryInfo (strDir); if (DirInfo.Exists) { // 디렉토리 삭제 Directory.Delete (strDir, true); MessageBox.Show ("디렉토리 삭제", "알림"); } else { // 디렉토리 생성 DirInfo = Directory.CreateDirectory (strDir); // 서브 디렉토리 생성 DirInfo.CreateSubdirectory (strSubDir); MessageBox.S..
프로그램 세상/C#
2009. 10. 24. 02:06