수업 라이브러리 프로젝트를 작성할 때 서버 측의 물리적 경로를 사용해야 하는 특별한 비즈니스 요구 사항이 있는 경우가 많습니다. System.IO.Directory.GetCurrentDirectory() 메서드는 일반적으로 가득 찰 수 없는 WINNTSystem32 디렉터리를 반환합니다. 일반적인 비즈니스 요구 사항을 충족하고 특정 실행 DLL이 있는 실제 디렉터리를 가져오려면 Assembly.GetExecutingAssembly().CodeBase 속성을 사용할 수 있습니다. 이를 얻기 위한 구체적인 참고방법은
/// <summary> /// 获取Assembly的运行路径 /// </summary> ///<returns></returns> private string GetAssemblyPath() { string _CodeBase =System.Reflection.Assembly.GetExecutingAssembly().CodeBase ; _CodeBase = _CodeBase.Substring(8,_CodeBase.Length -8); // 8是file:// 的长度 string[] arrSection = _CodeBase.Split(new char[]{'/'}); string _FolderPath = ""; for(int i=0;i<arrSection.Length-1;i++) { _FolderPath += arrSection[i] + "/"; } return _FolderPath; }