This article describes the method of C# to determine whether a specified drive is ready. Share it for your reference. The details are as follows:
using System; using ; using ; using ; class Program { static void Main(string[] args) { // Get info regarding all drives. DriveInfo[] myDrives = (); // Now print stats. foreach (DriveInfo d in myDrives) { ("Name: {0}", ); ("Type: {0}", ); if () { ("Free space: {0}", ); ("Format: {0}", ); ("Label: {0}\n", ); } } (); } }
I hope this article will be helpful to everyone's C# programming.