• stroke-explorer sort close


    win10

    2列排列所有打开的explorer窗口

    关闭全部explorer 窗口

    
    function getExplorerWindows() {
        let wnds = sp.AllApplications();
        const windClass = "CabinetWClass";
        const proName = "explorer";
        let result = new Array();
        for(let i =0;i< wnds.Length;++i) {
            let cur = wnds[i];
            if(cur.Process.ProcessName == proName) {
                result.push(cur);
            }
        }
        return result;
    }
    
    
    function closeExporer() {
        let todo = getExplorerWindows();
        for(let i =0;i< todo.length;++i) {
            todo[i].SendClose()
        }
    }
    
    function sortExporer(windArray) {
        if(!!!windArray || windArray.length<1) return;
        const total = windArray.length;
        const curScreen = windArray[0].Screen;
        const sWidth = curScreen.WorkingArea.Width;
        const sHeight = curScreen.WorkingArea.Height;
        
        const cellW = Math.floor(sWidth/2);
        const cellH = Math.floor(sHeight/Math.floor((total+1)/2));
    
    
        let result = "";
        for(let i =0; i<total;++i) {
            let rect =   windArray[i].Rectangle;
            rect.Width =cellW;
            rect.Height = cellH;
            rect.X = (i%2)*cellW;
            rect.Y = Math.floor((i)/2.0)*cellH;
            windArray[i].Rectangle = rect;
        }
    }
    
    
    sortExporer(getExplorerWindows());
    
    closeExporer();
    
  • 相关阅读:
    [Contest on 2020.4.2] 影帝杯狂欢赛
    [BZOJ 3821] 玄学
    CodeForces 432D Prefixes and Suffixes
    CodeForces 17E Palisection
    CodeForces 665E Beautiful Subarrays
    BZOJ 2989 数列
    changeeksdja
    Jmeter学习——1
    LoadRunner监控Linux与Windows方法(经典)
    LR检查点小结
  • 原文地址:https://www.cnblogs.com/Searchor/p/13970192.html
Copyright © 2020-2023  润新知