how to know drive details of user system thru vb.net program

Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
		Dim drives As System.IO.DriveInfo() = System.IO.DriveInfo.GetDrives()
		For Each drive In drives
			Console.WriteLine(drive.RootDirectory.FullName)
		Next
	End Sub
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.