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

Windows 디렉토리에서 부분을 분할하는 C# 프로그램

<시간/>

먼저 문자열, 즉 Windows 디렉토리 경로를 설정하십시오 -

string str = @"D:\Downloads\Amit";

이제 Split() 메서드를 사용하고 \가 발생하는 곳에서 분할 -

str.Split(' \\')

다음은 완전한 코드입니다 -

using System;
class Program {
   static void Main() {
      string str = @"D:\Downloads\Amit";
      Console.WriteLine("Directory...\n"+str);
      string[] myStr = str.Split('\\');
      Console.WriteLine("\nSplit...");
      foreach (string ch in myStr) {
         Console.WriteLine(ch);
      }
   }
}

출력

Directory...
D:\Downloads\Amit

Split...
D:
Downloads
Amit