1

我想在鼠标光标下获取窗口资源管理器目录路径。我试过AutomationElement了,但它只检测到我不想要的名称或进程 ID 等。我也试过SHDocVw.ShellWindows它似乎有效,但我无法定义选择哪一个。

这是我试过的一个来源

string GetDropPath(AutomationElement element){
            string dir = element.Current.Name;

            if (dir.Split('.').Length >= 2) return null;

            string desktop = CommonDir["Desktop"];
            if (Directory.Exists(desktop + "\\" + dir))
            {
                dir = desktop + "\\" + dir;
            }
            else
            {
                if (CommonDir.ContainsKey(dir))
                {
                    dir = CommonDir[dir];
                }
                else if (!Directory.Exists(dir))
                {


                    foreach (InternetExplorer item in new SHDocVw.ShellWindows())
                    {
                        //uint ppid = 0;
                        //GetWindowThreadProcessId(item.HWND, out ppid);
                        if (item.LocationURL.ToString().StartsWith("file:///"))
                        {
                            List<int> children = GetAllChildrenWindowHandles(item.HWND, 100);
                            if (item.HWND == element.Current.NativeWindowHandle || children.Contains(element.Current.NativeWindowHandle))
                            {
                                string pth = item.LocationURL.Replace("file:///", "");
                                if (Directory.Exists(pth + "\\" + dir))
                                {
                                    dir = pth + "\\" + dir;
                                }
                                else
                                {
                                    dir = pth;
                                }
                                break;
                            }
                        }
                    }

                }
            }
            if (Directory.Exists(dir))
            {
                return dir;
            }
            else
            {
                return null;
            }
        }
4

0 回答 0