모바일 장치에서 경로를 가져오는 방법
저자:Eve Cole
업데이트 시간:2009-07-01 16:06:57
모바일 장치에서 경로를 얻는 일반적인 방법은 다음과 같습니다.
공개 문자열 GetFileName()
{
return System.IO.Path.Combine(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase),"filename");
}
모바일 장치 개발에서는 경로로 절대 경로가 사용됩니다.
System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase는 응용 프로그램의 기본 디렉터리를 가져온 다음 이를 파일 및 어셈블리와 결합하여 절대 경로를 가져옵니다.
http://www.cnblogs.com/yxfqust/archive/2006/11/08/553878.html