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

下边代码是关于C#返回当前系统所有可用驱动器符号的代码。

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

			if ( args.Length > 1 )
			{
				throw new Exception( "Invalid command line arguments" );
			}
			if ( args.Length == 1 )
			{
				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";


			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 )
	{
		ListDrives,  Version 1.10
		List all drive letters in use on the specified computer

		Usage:  LISTDRIVES  [ computername ]

		Where:  'computername'  is the (optional) name of a remote computer
								(default if not specified: local computer)

		Written by Rob van der Woude

		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;
	}
}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值