Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Check Drive Information
WhatsApp
Zaid Ansari
Sep 28
2015
869
0
0
DriveInfoAndSize.zip
//Using System.IO;
private
void
Form1_Load(
object
sender, EventArgs e)
{
foreach
(var item
in
DriveInfo.GetDrives())
{
lblDriveType.Text = item.Name.ToString();
lblTotalSize.Text = item.TotalSize.ToString();
lblFreeSpace.Text = item.TotalFreeSpace.ToString();
}
}
Find Drive Type
Find Drive Size
Up Next
Check Drive Information