Get computer disk space in C #

Source: Internet
Author: User
Tags tostring

The Getdrives () method of the DriveInfo class under the System.IO namespace can be used to obtain the names of all logical drives on the computer. The TotalSize property of the DriveInfo class can get the space size of the disk in a semantic. The main code is as follows.

private void Form1_Load (object sender, EventArgs e)
{
System.io.driveinfo[] Drive=system.io.driveinfo.getdrives ();
for (int i = 0; i < drive. Length; i++)
{
COMBOBOX1.ITEMS.ADD (Drive[i]. Name);
}
}
private void Combobox1_selectedvaluechanged (object sender, EventArgs e)
{
system.io.driveinfo[] Drive = System.IO.DriveInfo.GetDrives ();
for (int i = 0; i < drive. Length; i++)
{
if (comboBox1.SelectedItem.ToString () = = Drive[i]. Name)
{
TextBox1.Text = Convert.ToString (Drive[i]. totalsize/1024);
}
}
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.