C#返回当前系统所有可用驱动器符号的方法


Posted in Python onApril 18, 2015

本文实例讲述了C#返回当前系统所有可用驱动器符号的方法。分享给大家供大家参考。具体如下:

// The initial C# code for the "plain" WMI query was generated by
// WMI Code Generator, Version 5.00, //http://www.robvanderwoude.com/wmigen.php
using System;
using System.Management;
using System.Collections.Generic;
namespace RobvanderWoude
{
 public class ListDrives
 {
  public static int Main( string[] args )
  {
   try
   {
    string computer = string.Empty;
    #region Command line parsing
    // Only 1 optional argument allowed: a remote computer name
    if ( args.Length > 1 )
    {
     throw new Exception( "Invalid command line arguments" );
    }
    if ( args.Length == 1 )
    {
     // We'll display a 'friendly' message if help was requested
     if ( args[0].StartsWith( "/" ) || args[0].StartsWith( "-" ) )
     {
      switch ( args[0].ToUpper( ) )
      {
       case "/?":
       case "-?":
       case "/H":
       case "-H":
       case "--H":
       case "/HELP":
       case "-HELP":
       case "--HELP":
        return WriteError( string.Empty );
       default:
        return WriteError( "Invalid command line argument" );
      }
     }
     else
     {
      computer = "\\\\" + args[0] + "\\";
     }
    }
    #endregion
    string wmins = computer + "root\\CIMV2";
    ManagementObjectSearcher searcher = new ManagementObjectSearcher( wmins, "SELECT * FROM Win32_LogicalDisk" );
    List<string> drives = new List<string>( );
    foreach ( ManagementObject queryObj in searcher.Get( ) )
    {
     drives.Add( queryObj["DeviceID"].ToString( ) );
    }
    drives.Sort( );
    string drivelist = "";
    foreach ( string drive in drives )
    {
     drivelist += ( drive + " " );
    }
    Console.WriteLine( drivelist.Trim( ) );
    return 0;
   }
   catch ( Exception e )
   {
    return WriteError( e );
   }
  }
  public static int WriteError( Exception e )
  {
   return WriteError( e == null ? null : e.Message );
  }
  public static int WriteError( string errorMessage )
  { 
   string fullpath = Environment.GetCommandLineArgs( ).GetValue( 0 ).ToString( );
   string[] program = fullpath.Split( '\\' );
   string exename = program[program.GetUpperBound( 0 )];
   exename = exename.Substring( 0, exename.IndexOf( '.' ) );
   if ( string.IsNullOrEmpty( errorMessage ) == false )
   {
    Console.Error.WriteLine( );
    Console.ForegroundColor = ConsoleColor.Red;
    Console.Error.Write( "ERROR: " );
    Console.ForegroundColor = ConsoleColor.White;
    Console.Error.WriteLine( errorMessage );
    Console.ResetColor( );
   }
   Console.Error.WriteLine( );
   Console.Error.WriteLine( exename + ", Version 1.10" );
   Console.Error.WriteLine( "List all drive letters in use on the specified computer" );
   Console.Error.WriteLine( );
   Console.Error.Write( "Usage: " );
   Console.ForegroundColor = ConsoleColor.White;
   Console.Error.Write( exename.ToUpper( ) );
   Console.Error.WriteLine( " [ computername ]" );
   Console.ResetColor( );
   Console.Error.WriteLine( );
   Console.Error.WriteLine( "Where: 'computername' is the (optional) name of a remote computer" );
   Console.Error.WriteLine( " (default if not specified: local computer)" );
   Console.Error.WriteLine( );
   Console.Error.WriteLine( "Written by Rob van der Woude" );
   return 1;
  }
 }
}

希望本文所述对大家的C#程序设计有所帮助。

Python 相关文章推荐
python备份文件以及mysql数据库的脚本代码
Jun 10 Python
Python抓取框架Scrapy爬虫入门:页面提取
Dec 01 Python
python微信公众号之关键词自动回复
Jun 15 Python
python3实现点餐系统
Jan 24 Python
Python进程间通信 multiProcessing Queue队列实现详解
Sep 23 Python
python matplotlib折线图样式实现过程
Nov 04 Python
pycharm激活码快速激活及使用步骤
Mar 12 Python
python3 正则表达式基础廖雪峰
Mar 25 Python
python爬虫学习笔记之Beautifulsoup模块用法详解
Apr 09 Python
Python描述数据结构学习之哈夫曼树篇
Sep 07 Python
OpenCV中resize函数插值算法的实现过程(五种)
Jun 05 Python
使用qt quick-ListView仿微信好友列表和聊天列表的示例代码
Jun 13 Python
python关闭windows进程的方法
Apr 18 #Python
python使用Queue在多个子进程间交换数据的方法
Apr 18 #Python
python获取当前计算机cpu数量的方法
Apr 18 #Python
使用Python编写vim插件的简单示例
Apr 17 #Python
用Python登录Gmail并发送Gmail邮件的教程
Apr 17 #Python
基于Python实现的百度贴吧网络爬虫实例
Apr 17 #Python
python中dir函数用法分析
Apr 17 #Python
You might like
apache+php+mysql安装配置方法小结
2010/08/01 PHP
PHP 使用memcached简单示例分享
2015/03/05 PHP
PHP验证终端类型是否为手机的简单实例
2017/02/07 PHP
js网页右下角提示框实例
2014/10/14 Javascript
javascript图片预加载实例分析
2015/07/16 Javascript
javascript的列表切换【实现代码】
2016/05/03 Javascript
Bootstrap3制作搜索框样式的方法
2016/07/11 Javascript
js 定义对象数组(结合)多维数组方法
2016/07/27 Javascript
JS关闭窗口时产生的事件及用法示例
2016/08/20 Javascript
Javascript的动态增加类的实现方法
2016/10/20 Javascript
jQuery实现大图轮播
2017/02/13 Javascript
Vue2.x中的父子组件相互通信的实现方法
2017/05/02 Javascript
Linux Centos7.2下安装nodejs&amp;npm配置全局路径的教程
2018/05/15 NodeJs
angular 表单验证器验证的同时限制输入的实现
2019/04/11 Javascript
JS实现动态星空背景效果
2019/11/01 Javascript
python遍历文件夹并删除特定格式文件的示例
2014/03/05 Python
python3.6连接MySQL和表的创建与删除实例代码
2017/12/28 Python
python中pyplot基础图标函数整理
2020/11/10 Python
python实现经纬度采样的示例代码
2020/12/10 Python
HTML5在canvas中绘制复杂形状附效果截图
2014/06/23 HTML / CSS
html5小程序飞入购物车(抛物线绘制运动轨迹点)
2020/10/19 HTML / CSS
美国女鞋品牌:naturalizer(娜然)
2016/08/01 全球购物
携程旅行网:中国领先的在线旅行服务公司
2017/02/17 全球购物
中兴通讯全球官方网站:ZTE
2020/12/26 全球购物
C语言50道问题
2014/10/23 面试题
Exception类的常用方法
2012/06/16 面试题
党员公开承诺事项
2014/03/25 职场文书
经济管理自荐书
2014/06/09 职场文书
食品安全承诺书范文
2014/08/29 职场文书
协商一致解除劳动合同协议书
2014/09/14 职场文书
教师政风行风评议心得体会
2014/10/21 职场文书
加强干部作风建设整改方案
2014/10/24 职场文书
房屋授权无偿使用证明
2014/11/29 职场文书
2015年个人实习工作总结
2015/05/28 职场文书
三国演义读书笔记
2015/06/25 职场文书
Windows下使用Nginx+Tomcat做负载均衡的完整步骤
2021/03/31 Servers