需求:查看Windows某个文件夹所有一级子文件夹大小,并按照从大到小排序
解决方案:使用Powershell脚本
脚本内容如下
function filesize ()
{
[string]$filepath ="."
$sortedlength = @{ }
$sorted = @{ }
if ($filepath -eq $null)
{
throw "路径不能为空"
}
dir -Path $filepath |
ForEach-Object -Process {
if ($_.psiscontainer -eq $true)
{
$length = 0
$name=$_.name
dir -Path $_.fullname -Recurse | ForEach-Object{
[long]$length += $_.Length
}
$sortedlength.Add($name,$length)
}
}
$sorted=$sortedlength.GetEnumerator() | Sort-Object value -Descending
foreach ($a in $sorted.GetEnumerator())
{
if ($a.Value -ge 1GB)
{
$l = $a.Value/1GB
$a.Key + "文件夹的大小为: {0:n1} GB" -f $l
}
elseif ($a.Value -ge 1MB)
{
$l = $a.Value/1MB
$a.Key + "文件夹的大小为: {0:n1} MB" -f $l
}
else
{
$l = $a.Value/1KB
$a.Key + "文件夹的大小为: {0:n1} KB" -f $l
}
}
}
filesize | out-file .文件大小.txt
使用方式
1. 到指定目录新建文本文档,将以上代码保存到文档
2. 将文本文档保存为.ps1格式,编码选择UTF-8 BOM(如果没有BOM选项,选择UTF-8)
3. 右键执行
如遇到报错无法加载文件 XXX.ps1,因为在此系统上禁止运行脚本
需要以管理员身份执行Powershell脚本Set-ExecutionPolicy Bypass,之后再次执行
4. 执行完成后会在当前文件夹创建一个文件大小.txt的文本文档,如图所示
以上
好了,本文就介绍到这里了,感谢您的观看
内容来源于网络如有侵权请私信删除
文章来源: 博客园
- 还没有人评论,欢迎说说您的想法!