熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

用C#獲取計算機磁盤空間

2022-06-13   來源: .NET編程 

  在SystemIO命名空間下的DriveInfo類的GetDrives()方法可以用來獲得計算機上的所有邏輯驅動器的名稱DriveInfo類的TotalSize屬性可義獲得磁盤的空間大小主要代碼如下

  privatevoidForm_Load(objectsenderEventArgse)

  {

  SystemIODriveInfo[]drive=SystemIODriveInfoGetDrives();

  for(inti=;i<driveLength;i++)

  {

  comboBoxItemsAdd(drive[i]Name);

  }

  }

  privatevoidcomboBox_SelectedValueChanged(objectsenderEventArgse)

  {

  SystemIODriveInfo[]drive=SystemIODriveInfoGetDrives();

  for(inti=;i<driveLength;i++)

  {

  if(comboBoxSelectedItemToString()==drive[i]Name)

  {

  textBoxText=ConvertToString(drive[i]TotalSize/);

  }

  }

  }


From:http://tw.wingwit.com/Article/program/net/201311/13148.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.