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 | 31 |
Tags
- 거제도
- UX베이커리
- 김춘배
- windows mobile 6.5
- 쉐어포인트코리아
- MIX10
- 윈도우모바일
- 훈스닷넷
- winmodev
- 소년포비소프트
- 마이크로소프트
- 윈모데브
- 루나네스
- 스마트폰
- 신석현
- 윈도우 모바일
- 윈도우폰
- 안드로이드
- 실버라이트 코리아
- 헤이맨
- 윈도데브
- 데브피아
- 소년포비
- 황광진
- 지승욱
- 옴니아2
- 서진호
- 주신영
- 신동혁
- 윈도우폰7
Archives
- Today
- Total
목록[c#] 모든 드라이브 정보 얻기? (1)
소년포비의 세계정복!!
[c#] 모든 드라이브 정보 얻기?
DriveInfo[] allDrives = DriveInfo.GetDrives(); foreach (DriveInfo d in allDrives) { Console.WriteLine("Drive {0}", d.Name); Console.WriteLine(" File type: {0}", d.DriveType); if (d.IsReady == true) { Console.WriteLine(" Volume label: {0}", d.VolumeLabel); Console.WriteLine(" File system: {0}", d.DriveFormat); Console.WriteLine( " Available space to current user:{0, 15} bytes", d.AvailableFreeSp..
프로그램 세상/C#
2009. 10. 11. 02:38