Windowsサービスの.exeファイルが動的にインストールされているフォルダーを見つけるにはどうすればよいですか?
_Path.GetFullPath(relativePath);
_
_C:\WINDOWS\system32
_ディレクトリに基づいてパスを返します。
ただし、XmlDocument.Load(string filename)
メソッドは、サービス.exeファイルがインストールされているディレクトリ内の相対パスに対して機能しているようです。
試して
System.Reflection.Assembly.GetEntryAssembly().Location
Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location)
上記の別のバージョン:
string path = Assembly.GetExecutingAssembly().Location;
FileInfo fileInfo = new FileInfo(path);
string dir = fileInfo.DirectoryName;
これは、Windowsサービスで機能します。
//CommandLine without the first and last two characters
//Path.GetDirectory seems to have some difficulties with these (special chars maybe?)
string cmdLine = Environment.CommandLine.Remove(Environment.CommandLine.Length - 2, 2).Remove(0, 1);
string workDir = Path.GetDirectoryName(cmdLine);
これにより、実行可能ファイルの絶対パスが提供されます。
Environment.CurrentDirectoryは、プログラムが実行されている現在のディレクトリを返します。 Windowsサービスの場合、実行可能ファイルが展開された場所ではなく、実行可能ファイルが実行される%WINDIR%/ system32パスを返します。