web-dev-qa-db-ja.com

Windowsサービスのフルパスを取得する

Windowsサービスの.exeファイルが動的にインストールされているフォルダーを見つけるにはどうすればよいですか?

_Path.GetFullPath(relativePath);
_

_C:\WINDOWS\system32_ディレクトリに基づいてパスを返します。

ただし、XmlDocument.Load(string filename)メソッドは、サービス.exeファイルがインストールされているディレクトリ内の相対パスに対して機能しているようです。

58
Samuel Kim

試して

System.Reflection.Assembly.GetEntryAssembly().Location
83
Greg Dean

これを試して:

AppDomain.CurrentDomain.BaseDirectory

(ちょうどここにあるように: Windowsサービスexeパスを見つける方法

66
Curtis Yallop
Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location)
38
allwarr

上記の別のバージョン:

string path = Assembly.GetExecutingAssembly().Location;
FileInfo fileInfo = new FileInfo(path);
string dir = fileInfo.DirectoryName;
5
Chris S

これは、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);  

これにより、実行可能ファイルの絶対パスが提供されます。

5
lowglider

Environment.CurrentDirectoryは、プログラムが実行されている現在のディレクトリを返します。 Windowsサービスの場合、実行可能ファイルが展開された場所ではなく、実行可能ファイルが実行される%WINDIR%/ system32パスを返します。

3
Amzath