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

C#의 경로 메서드

<시간/>

C#에서 파일 경로를 처리하려면 Path 메서드를 사용합니다. 이러한 메서드는 System.IO 네임스페이스에 있습니다.

그 중 일부는 -

확장 가져오기

GetExtension() 메서드를 사용하여 파일의 확장자를 검색합니다.

예:.txt, .dat 등

파일 이름 가져오기

GetFileName() 메서드를 사용하여 파일 이름을 검색합니다.

예:new.txt, details.dat 등

확장 없는 GetFileName

GetFileNameWithoutExtension() 메서드를 사용하여 확장자가 없는 파일 이름을 검색합니다.

예:신규, 세부정보 등

예를 들어 보겠습니다 -

예시

using System.IO;
using System;
class Program {
   static void Main() {
      string myPath = "D:\\one.txt";
      string fileExtension = Path.GetExtension(myPath);
      string fileName = Path.GetFileName(myPath);
      string noExtension = Path.GetFileNameWithoutExtension(myPath);

      Console.WriteLine("File Extension: "+fileExtension);
      Console.WriteLine("Fine Name: "+fileName);
      Console.WriteLine("File Name without extension: "+noExtension);
   }
}

출력

File Extension: .txt
Fine Name: D:\one.txt
File Name without extension: D:\one