使用SHDocVw关闭文件夹时访问被拒绝

时间:2017-08-26 18:59:02

标签: c# process shdocvw

我尝试使用SHDocVw按路径关闭文件夹。这不起作用:

  

Acces deined。

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

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();
    }
}

0 个答案:

没有答案