Bootstrap

powershell找出指定目录下最大文件

# 设置目标目录
$directoryPath = "E:\Path\To\Your\Directory"

# 获取目录下所有文件,按大小降序排序,取第一个(即最大的文件)
$largestFile = Get-ChildItem -Path $directoryPath -File | Sort-Object -Property Length -Descending | Select-Object -First 1

# 计算并输出最大文件的大小(以MB为单位)
$sizeInMB = $largestFile.Length / 1MB
Write-Host "最大的文件是: $($largestFile.Name),其大小为: $($sizeInMB.ToString('0.00')) MB"
;