web-dev-qa-db-ja.com

特定のexeファイルが実行されているかどうかを確認します

特定の場所で実行されているプログラムを確認する方法を知りたいです。たとえば、c:\ loc1\test.exeとc:\ loc2\test.exeにtest.exeの2つの場所があります。 test:exeのすべてのインスタンスではなく、c:\ loc1\test.exeが実行されているかどうかを知りたいだけです。

34
murasaki5
bool isRunning = Process.GetProcessesByName("test")
                .FirstOrDefault(p => p.MainModule.FileName.StartsWith(@"c:\loc1")) != default(Process);
52
bruno conde

これは私の改善された機能です:

private bool ProgramIsRunning(string FullPath)
{
    string FilePath =  Path.GetDirectoryName(FullPath);
    string FileName = Path.GetFileNameWithoutExtension(FullPath).ToLower();
    bool isRunning = false;

    Process[] pList = Process.GetProcessesByName(FileName);

    foreach (Process p in pList) {
        if (p.MainModule.FileName.StartsWith(FilePath, StringComparison.InvariantCultureIgnoreCase))
        {
            isRunning = true;
            break;
        }
    }

    return isRunning;
}

そしてそれを次のように使用します:

ProgramIsRunning(@"c:\loc1\test.exe");
7
Pishgaman.org

これを試してください...私はそれを使用して、起動しようとしているexeと同じ名前で別のプロセスがすでに実行されているかどうかを起動時に判断し、それがすでにある場合はそれをフォアグラウンドに持って行きます実行中...プロセス名を取得してその特定の名前をテストするように変更できます...これにより、特定の名前で実行中のプロセスがあるかどうかがわかりますが、そのプロセスのロード元ではありません...

指定された名前で実行されているプロセスがある場合、そのプロセスがロードされた場所を返す公開されたアクセス可能なメソッドを持っている場合、実行中のプロセスでそのメソッドを呼び出すことができます。そうでなければ、私は知りません。

しかし、好奇心からだけではなく、それらが異なる場合を除き、なぜ気にしますか?そして、それらが何らかの方法で異なる場合、ロードされているものを検出するためにその違いを(それが何であれ)使用するコード。しかし、それらが同じである場合、どのディスク上のイメージがそれをロードするために使用されたかはどうすれば重要ですか?

    [DllImport("user32.dll")]
    private static extern bool SetForegroundWindow(IntPtr hWnd);
    [DllImport("user32.dll")]
    private static extern bool ShowWindowAsync(IntPtr hWnd, int nCmdShow);
    [DllImport("user32.dll")]
    private static extern bool IsIconic(IntPtr hWnd);

    private const int SW_HIDE = 0;
    private const int SW_SHOWNORMAL = 1;
    private const int SW_SHOWMINIMIZED = 2;
    private const int SW_SHOWMAXIMIZED = 3;
    private const int SW_SHOWNOACTIVATE = 4;
    private const int SW_RESTORE = 9;
    private const int SW_SHOWDEFAULT = 10;

 private static bool IsAlreadyRunning()
    {
        // get all processes by Current Process name
        Process[] processes = 
            Process.GetProcessesByName(
                Process.GetCurrentProcess().ProcessName);

        // if there is more than one process...
        if (processes.Length > 1) 
        {
            // if other process id is OUR process ID...
            // then the other process is at index 1
            // otherwise other process is at index 0
            int n = (processes[0].Id == Process.GetCurrentProcess().Id) ? 1 : 0;

            // get the window handle
            IntPtr hWnd = processes[n].MainWindowHandle;

            // if iconic, we need to restore the window
            if (IsIconic(hWnd)) ShowWindowAsync(hWnd, SW_RESTORE);

            // Bring it to the foreground
            SetForegroundWindow(hWnd);
            return true;
        }
        return false;
    }
5
Charles Bretana

既存のすべてのプロセスを反復処理してから、探しているファイル名のMainModuleプロパティを確認する必要があります。このようなもの

using System.Diagnostics;
using System.IO;

//...

string fileNameToFilter = Path.GetFullPath("c:\\loc1\\test.exe");

foreach (Process p in Process.GetProcesses())
{
   string fileName = Path.GetFullPath(p.MainModule.FileName);

   //cehck for equality (case insensitive)
   if (string.Compare(fileNameToFilter, fileName, true) == 0)
   {
      //matching...
   }
}
4
Frank Bollack

この機能は次の場合に役立ちます。

using System.Diagnostics;

public bool IsProcessOpen(string name)
{
    foreach (Process clsProcess in Process.GetProcesses()) {
        if (clsProcess.ProcessName.Contains(name))
        {
            return true;
        }
    }
    return false;
} 

ソース: http://www.dreamincode.net/code/snippet1541.htm

3
Alex Musayev

このようなもの。 GetMainModuleFileNameは、x86から​​x64プロセスへのアクセスに役立ちます。

  [DllImport("kernel32.dll")]
  public static extern bool QueryFullProcessImageName(IntPtr hprocess, int dwFlags, StringBuilder lpExeName, out int size);

  private bool CheckRunningProcess(string processName, string path) {

  Process[] processes = Process.GetProcessesByName(processName);
  foreach(Process p in processes) {
    var name = GetMainModuleFileName(p);
    if (name == null)
      continue;
    if (string.Equals(name, path, StringComparison.InvariantCultureIgnoreCase)) {
      return true;
    }
  }
  return false;
}

// Get x64 process module name from x86 process
private static string GetMainModuleFileName(Process process, int buffer = 1024) {

  var fileNameBuilder = new StringBuilder(buffer);
  int bufferLength = fileNameBuilder.Capacity + 1;
  return QueryFullProcessImageName(process.Handle, 0, fileNameBuilder, out bufferLength) ?
      fileNameBuilder.ToString() :
      null;
}
1
vik_78

mutexという名前 を使用できます。これは、プログラムが実行されているディレクトリ構造から名前が付けられます。

0
JustLoren