一個在移動設備中獲取路徑的常用方法:
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 獲得應用程序的基目錄,然後與文件與裝配,就得到了絕對路徑。