개발관련/other

파일의 전체 경로에서 디렉토리를 가져 오는 방법

Rateye 2021. 6. 13. 21:01
728x90
반응형
질문 : 파일의 전체 경로에서 디렉토리를 가져 오려면 어떻게합니까?

파일이있는 디렉토리를 얻는 가장 간단한 방법은 무엇입니까? 나는 이것을 사용하여 작업 디렉토리를 설정하고 있습니다.

string filename = @"C:\MyDirectory\MyFile.bat"; 

이 예에서는 "C : \ MyDirectory"를 가져와야합니다.

답변

절대 경로가있는 경우 Path.GetDirectoryName(path) .

상대 이름 만 얻을 수있는 경우 new FileInfo(path).Directory.FullName .

PathFileInfo System.IO 네임 스페이스에 있습니다.

출처 : https://stackoverflow.com/questions/674479/how-do-i-get-the-directory-from-a-files-full-path
728x90
반응형