I need to follow my heart

不要让任何人的意见淹没了你内在的心声
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

一个在移动设备中获取路径的方法

Posted on 2006-11-08 10:38  野娃  阅读(884)  评论(2编辑  收藏  举报
 一个在移动设备中获取路径的常用方法:
public string 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 获得应用程序的基目录,然后与文件与装配,就得到了绝对路径。