Powershell获取当前文件夹内所有一级子文件夹大小
|
需求:查看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的文本文档,如图所示
以上
好了,本文就介绍到这里了,感谢您的观看
来源:https://www.cnblogs.com/xunjing2/p/17141710.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作! |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有账号?立即注册
x
|
|
|
发表于 2023-2-21 19:19:28
举报
回复
分享
|
|
|
|