为什么加载后命令提示符消失了? [英] Why is the command prompt disappearing after loading?

查看:69
本文介绍了为什么加载后命令提示符消失了?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用下面的代码,命令提示符在出现后几乎立即消失.此代码不应该显示所有正在使用的可移动驱动器吗?

With the code below, the command prompt disappears almost immediately after appearing. Shouldn't this code display all the removable drives being used?

using System.Linq;
using System.IO;
using System;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            var drives = DriveInfo.GetDrives()
             .Where(drive => drive.IsReady && drive.DriveType == DriveType.Removable);
            Console.WriteLine("Removable drives being used:", drives);
        } 
    }
}

非常感谢!

推荐答案

尝试一下...

 DriveInfo[] allDrives = DriveInfo.GetDrives();
 foreach(DriveInfo dv in drives)          
 {              
        Console.WriteLine("drive Name:{0}", dv.Name);      
 }    
Console.ReadLine();

这篇关于为什么加载后命令提示符消失了?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆