以下のコードでは、コマンド プロンプトが表示された直後に非表示になります。このコードは、使用されているすべてのリムーバブル ドライブを表示するべきではありませんか?
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);
}
}
}
よろしくお願いします!