0

我尝试使用SHDocVw. 它不工作:

访问定义。

我以管理员身份运行我的程序。

ShellWindows _shellWindows = new SHDocVw.ShellWindows();
string processType;
foreach (InternetExplorer ie in _shellWindows)
{
    processType = Path.GetFileNameWithoutExtension(ie.FullName).ToLower();
    if (processType.Equals("explorer") && ie.LocationURL.Contains(mypath))
    {
        ie.Quit();
    }
}
4

0 回答 0