码迷,mamicode.com
首页 > Windows程序 > 详细

Win7下获取资源管理器地址栏文件夹路径

时间:2014-10-18 15:23:20      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   ar   sp   文件   div   art   

以下示例操作:若为C:计算机\知库同步盘,则关闭

// gAppIsWindowsVistaOrHigher()自己写的判断函数,可参考VC分类下的获取当前系统全文
if (gAppIsWindowsVistaOrHigher())
{
    HWND hwndAddressBandRoot= 0;
    HWND hwndmsctls_progress32= 0;
    HWND hwndBreadcrumbParentt= 0;
    HWND hwndToolbarWindow32= 0;
    NOT_NULL((hwndAddressBandRoot = ::FindWindowExW(hwndReBarWindow32, NULL, L"Address Band Root", NULL)));
    NOT_NULL((hwndmsctls_progress32 = ::FindWindowExW(hwndAddressBandRoot, NULL, L"msctls_progress32", NULL)));
    NOT_NULL((hwndBreadcrumbParentt = ::FindWindowExW(hwndmsctls_progress32, NULL, L"Breadcrumb Parent", NULL)));
    NOT_NULL((hwndToolbarWindow32 = ::FindWindowExW(hwndBreadcrumbParentt, NULL, L"ToolbarWindow32", NULL)));

    {
        TCHAR wcAddr[MAX_PATH+1] = {0};
        SendMessage(hwndToolbarWindow32, WM_GETTEXT, MAX_PATH, (LPARAM)wcAddr);
        QString szAddr = QString::fromUtf16(wcAddr);

        if (szAddr.startsWith("地址: ") && szAddr.endsWith("\\知库同步盘") && szAddr.count(":")==1)
        {
            SendMessage(hwndCabinet, WM_CLOSE, NULL, NULL);
        }
    }
}

 

Win7下获取资源管理器地址栏文件夹路径

标签:style   blog   color   os   ar   sp   文件   div   art   

原文地址:http://www.cnblogs.com/zw-h/p/4033162.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!