powershell 统计目录大小
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
#du 1.0- report directory disk usage
Write-Host DU 1.0 - 统计目录大小的脚本,作用和linux的du类似。`n
$args = "D:/网络游戏"
if (!$args)
{write-host "du 绝对目录名,如:`ndu.ps1 d:/mp3"}
elseif (!(Test-Path $args))
{write-host "错误:找不到目标目录名!"}
else
# 我在前人基础上整理,简化了不必要的功能,效果不错。个人感觉比sysinternals的du.exe好。
{
$b=Get-ChildItem $args -Recurse | Measure-Object -property length -sum
write-host "----【$args -- ",("{0:N2}" -f ($b.sum / 1MB)),"MB】----"
# 2010-8-15日出炉
$a=Get-ChildItem $args | Where-Object {$_.PsIsContainer -eq $true}
#foreach ($i in $a) 列出每个子目录大小
#{
#$subFolderItems = (Get-ChildItem $i.FullName -Recurse | Measure-Object -property length -sum)
#$i.FullName + " -- " + "{0:N2}" -f ($subFolderItems.sum / 1MB) + " MB"
#}
}
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献7条内容
所有评论(0)