我尝试使用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();
}
}