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

C# 루트 디렉토리의 이름을 가져오는 프로그램


RootDirectory 속성을 사용하여 루트 디렉터리의 이름을 가져옵니다.

첫째, DriveInfo를 사용하여 루트 디렉토리를 원하는 드라이브를 설정하십시오 -

DriveInfo dInfo = new DriveInfo("C");

이제 RootDirectory는 결과를 제공합니다 -

dInfo.RootDirectory

예시

다음은 전체 코드입니다 -

using System;
using System.Linq;
using System.IO;
public class Demo {
   public static void Main() {
      DriveInfo dInfo = new DriveInfo("C");
      Console.WriteLine("Root Directory: "+dInfo.RootDirectory);
   }
}

출력

다음은 출력입니다 -

C:\