WinCE中获取根目录的几种方式(C#)
展开全部
今天用到,就上网查找了下。有这么几个方式获取根目录的文件stringroot = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.FullyQualifiedName) +"\\Configure.xml";或者String CodePath =
System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase;CodePath= CodePath.Substring(0
, CodePath.LastIndexOf(@"\"));stringfilename = CodePath +"\\Configure.xml";或者使用API[DllImport("Coredll.dll"
, EntryPoint ="GetModuleFileName")]privatestaticexternuintGetModuleFileName(IntPtr hModule, [Out] StringBuilder lpszFileName,
intnSize);StringBuilder root=newStringBuilder(256);GetModuleFileName(IntPtr.Zero, root,
256);本来GetModuleFileName函数是在"Kernel32.dll"中的,但是
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询