전체 경로가 제공되었는지 확인하십시오. 주어진 경로가 전체 경로인지 확인하는 방법이 있습니까? 지금 나는 이것을하고있다 : if (template.Contains(":\\")) //full path already given { } else //calculate the path from local assembly { } 그러나 이것을 확인하는 더 우아한 방법이 있어야합니까? 사용 System.IO.Path.IsPathRooted하시겠습니까? true절대 경로에 대해서도 반환 됩니다. System.IO.Path.IsPathRooted(@"c:\foo"); // true System.IO.Path.IsPathRooted(@"\foo"); // true System.IO.Path.IsPathRooted("foo..