測試服務器只有C盤,固定大小,多人共享,每月重啟升級,有時候會出現(xiàn)磁盤空間不足的問題,所有需要查找某臺服務器上的大文件
創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供霍林郭勒網(wǎng)站建設、霍林郭勒做網(wǎng)站、霍林郭勒網(wǎng)站設計、霍林郭勒網(wǎng)站制作等企業(yè)網(wǎng)站建設、網(wǎng)頁設計與制作、霍林郭勒企業(yè)網(wǎng)站模板建站服務,10年霍林郭勒做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡服務。Get-ChildItem "c:" -Recurse | sort -descending -property length | select -first 10 name, Length
可以說,相當慢了......
最直觀的就是排除C:Windows
文件夾,然后再遞歸遍歷其他文件(夾),看一下
Get-ChildItem "c:" -Exclude "Windows"
運行了沒輸出。
難道Exclude的使用方式不對嗎?
說明使用沒有問題,可是why?
google了下,看到有人給官方提的issue,官方也標記為Bug了。
https://github.com/PowerShell/PowerShell/issues/11649
https://stackoverflow.com/questions/38269209/using-get-childitem-exclude-or-include-returns-nothing/38308796
Get-ChildItem "c:" -Exclude "Windows"
替換為
Get-Item c:* -Exclude "Windows"
Get-Item c:* -Exclude "Windows" | Get-ChildItem -Recurse | sort -descending -property length | select -first 10 name, Length