2007/10/29(Mon) 13:16:07 編集(投稿者)
■No9457 (はつね さん) に返信
> Dim fileName As String = String.Concat(My.Application.Info.DirectoryPath, "\hogehoge.txt"
>
> 参考ドキュメント→http://msdn2.microsoft.com/ja-jp/library/6whasz3x(vs.80).aspx
情報ありがとうございます。
当方C#でのコーディングのため、
[プロジェクト]→[参照の追加]で、[Microsoft.VisualBasic]を設定し、
+++++++++++++++++++++++++++
Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase MyApp
= new Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase();
string configPath = Path.Conbine(MyApp.Info.DirectoyPath, "hogehoge.txt");
+++++++++++++++++++++++++++
上記コードで思い通りのパスが取得できました。
どうもありがとうございました!