C#判断指定驱动器是否已经准备就绪的方法
程序员文章站
2023-11-21 15:57:04
本文实例讲述了c#判断指定驱动器是否已经准备就绪的方法。分享给大家供大家参考。具体如下:
using system;
using system.collecti...
本文实例讲述了c#判断指定驱动器是否已经准备就绪的方法。分享给大家供大家参考。具体如下:
using system; using system.collections.generic; using system.text; using system.io; class program { static void main(string[] args) { // get info regarding all drives. driveinfo[] mydrives = driveinfo.getdrives(); // now print stats. foreach (driveinfo d in mydrives) { console.writeline("name: {0}", d.name); console.writeline("type: {0}", d.drivetype); if (d.isready) { console.writeline("free space: {0}", d.totalfreespace); console.writeline("format: {0}", d.driveformat); console.writeline("label: {0}\n", d.volumelabel); } } console.readline(); } }
希望本文所述对大家的c#程序设计有所帮助。
下一篇: C#图像重新着色的方法