Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#의 GetLogicalDrives

<시간/>

시스템의 모든 디스크 드라이브를 가져오려면 C#에서 GetLogicalDrives() 메서드를 사용하십시오 -

Environment.GetLogicalDrives()

Join 메소드와 함께 사용하여 논리 드라이브의 쉼표로 구분된 목록을 가져옵니다 -

string.Join(",", Environment.GetLogicalDrives())

using System;
using System.IO;
namespace Demo {
   class Program {
      static void Main(string[] args) {
         Console.WriteLine(string.Join(",", Environment.GetLogicalDrives()));
      }
   }
}

출력

/,/etc/resolv.conf,/etc/hostname,/etc/hosts,/run/secrets,/home/cg/root