首页 > 系统服务 > 详细

Powershell 如何批量获取文件大小的实现代码

时间:2021-05-15 12:18:57      阅读:21      评论:0      收藏:0      [点我收藏+]
这篇文章主要介绍了Powershell 之批量获取文件大小的实现代码
效果图:

技术分享图片

核心代码:
$startFolder = "D:\"
$colItems = (Get-ChildItem $startFolder | Where-Object {$_.PSIsContainer -eq $True} | Sort-Object)
foreach ($i in $colItems)
{
 $subFolderItems = (Get-ChildItem $i.FullName -recurse | Measure-Object -property length -sum)
 $FileSize="{0:N2}" -f ($subFolderItems.sum / 1GB)
 $Unit=‘GB‘
 if($FileSize -lt 1)
 {
  $FileSize="{0:N2}" -f ($subFolderItems.sum / 1MB)
  $Unit=‘MB‘
 }
 write-host $i.FullName ‘ -- ‘ $FileSize $Unit -fore green
}

注意:如果是第一次运行需要开启执行脚本权限。

在powershell中运行如下命令,然后 Y 确认即可。

开启:

set-executionpolicy remotesigned

关闭:

Set-ExecutionPolicy Restricted

本文地址:https://www.linuxprobe.com/powershell-set-executionpolicy.html

Powershell 如何批量获取文件大小的实现代码

原文:https://www.cnblogs.com/cainiaoyige1/p/14770774.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!