我正在向监听器Windows服务发送消息。消息中是进程ID。我想使用进程ID将其附加到我的Windows服务,以便访问服务器上的文件夹。
我看不到如何设置进程ID只获得一个
int nProcessID = Process.GetCurrentProcess().Id;
答案 0 :(得分:3)
您无法为进程分配ID。但是,您可以按名称搜索一个:
int yourProcess = Process.GetProcessesByName( "YourListener.exe" )[0].Id;