モバイルデバイスでパスを取得する方法
著者:Eve Cole
更新時間:2009-07-01 16:06:57
モバイル デバイスでパスを取得する一般的な方法:
パブリック文字列 GetFileName()
{
return System.IO.Path.Combine(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase),"ファイル名");
}
モバイル デバイスの開発では、パスに絶対パスが使用されます。
System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase はアプリケーションのベース ディレクトリを取得し、それをファイルおよびアセンブリと組み合わせて絶対パスを取得します。
http://www.cnblogs.com/yxfqust/archive/2006/11/08/553878.html