C#返回當前系統(tǒng)所有可用驅(qū)動器符號的方法
更新時間:2015年04月18日 12:24:59 作者:work24
這篇文章主要介紹了C#返回當前系統(tǒng)所有可用驅(qū)動器符號的方法,涉及C#操作系統(tǒng)硬件驅(qū)動的相關(guān)技巧,需要的朋友可以參考下
本文實例講述了C#返回當前系統(tǒng)所有可用驅(qū)動器符號的方法。分享給大家供大家參考。具體如下:
// 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#程序設(shè)計有所幫助。
您可能感興趣的文章:
相關(guān)文章
python實現(xiàn)植物大戰(zhàn)僵尸游戲?qū)嵗a
這篇文章主要給大家介紹了關(guān)于python實現(xiàn)植物大戰(zhàn)僵尸游戲的相關(guān)資料,文中通過示例代碼介紹的非常詳細,對大家學習或者使用python具有一定的參考學習價值,需要的朋友們下面來一起學習學習吧2019-06-06
在Python中預(yù)先初始化列表內(nèi)容和長度的實現(xiàn)
今天小編就為大家分享一篇在Python中預(yù)先初始化列表內(nèi)容和長度的實現(xiàn),具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-11-11
如何使用Python處理HDF格式數(shù)據(jù)及可視化問題
這篇文章主要介紹了如何使用Python處理HDF格式數(shù)據(jù)及可視化問題,本文通過實例圖文相結(jié)合給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下2020-06-06

