c# 파일 경로1 [c#] 파일명, 폴더 경로 추출, 합치기, 찾기 ▶ 현재 경로 확인 string path = System.Reflection.Assembly.GetExecutingAssembly().Location; path = System.IO.Path.GetDirectoryName(path); ▶ 파일명을 추출할때 // 파일 명을 추출합니다. string filepath = @"D:\다운로드\IMAGE\test.png"; Console.WriteLine(Path.GetFileName(filepath)); 결과 : “test.png” ▶ 파일의 확장자를 가져오고 싶을 때 // . 을 포함한 확장자를 가져오고 싶을때 string filepath = @"D:\다운로드\IMAGE\test.png"; Console.WriteLine(Path.GetExtension(file.. 공학속으로/C# 2020. 4. 3. 이전 1 다음 💲 추천 글