#3 得分:5
回复于: 2011-05-03 13:25:00
| |
|
#4 得分:7
回复于: 2011-05-03 13:31:03
|
|
#5 得分:8
回复于: 2011-05-03 13:37:15
|
|
#6 得分:5
回复于: 2011-05-03 13:44:03
|
|
#7 得分:5
回复于: 2011-05-03 13:50:58
|
DriveInfo
类查看磁盘信息
DriveInfo di = new DriveInfo(@"d:\");
this.Label1.Text = di.Name; //
获取磁盘名称
this.Label2.Text =di.TotalFreeSpace.ToString(); //
可用空闲空间总量
this.Label3.Text =di.TotalSize.ToString(); //
存储空间总大小
this.Label4.Text = di.VolumeLabel; //
卷标
this.Label5.Text =di.AvailableFreeSpace.ToString(); //
可用空闲空间量
this.Label6.Text = di.DriveFormat.ToString(); //
磁盘格式