手机
当前位置:查字典教程网 >脚本专栏 >PowerShell >Powershell 之批量获取文件大小的实现代码
Powershell 之批量获取文件大小的实现代码
摘要:效果图:核心代码$startFolder="D:"$colItems=(Get-ChildItem$startFolder|Where-Ob...

效果图:

Powershell 之批量获取文件大小的实现代码1

核心代码

$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

【Powershell 之批量获取文件大小的实现代码】相关文章:

Powershell实现加密解密文本文件方法实例

Powershell小技巧之找出最大最小值

PowerShell Out-File禁止覆盖文件的方法

Powershell脚本中包含文件资源的例子

Windows Powershell 复制数组

PowerShell显示隐藏文件和系统文件的方法

Powershell 获取特定的网页信息的代码

Powershell小技巧之查找脚本中的函数

Powershell截取字符串并添加省略号的例子

PowerShell定义函数参数的2种方法和传参方法实例

精品推荐
分类导航