アプリケーションがインストールされているディレクトリを取得したい場合は Windows.ApplicationModel.Package.Current.InstalledLocation を使用します。
これによりアプリのインストールディレクトリを表す StorageFolderを取得することができます。
StorageFolder型なので、パス文字列を取得したい場合には以下のようなコードを記述します。
Windows.Storage.StorageFolder installDir = Windows.ApplicationModel.Package.Current.InstalledLocation; string path = installDir.Path;
現在作成中のアプリをデバッグ環境で実行してみたところ、以下のようにパス文字列を取得できました。
C:\Users\ユーザー\Documents\Visual Studio 2015\Projects\FileAccessSample\FileAccessSample\bin\x86\Debug\AppX
Please follow and like us:
コメント