一個在行動裝置中取得路徑的方法
作者:Eve Cole
更新時間:2009-07-01 16:06:57
一個在行動裝置中取得路徑的常用方法:
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 取得應用程式的基底目錄,然後與檔案與組裝,就得到了絕對路徑。
http://www.cnblogs.com/yxfqust/archive/2006/11/08/553878.html