📌  相关文章
📜  powershell 获取文件夹大小 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:22.113000             🧑  作者: Mango

代码示例1
"{0} MB" -f ((Get-ChildItem C:\users\ -Recurse | Measure-Object -Property Length -Sum -ErrorAction Stop).Sum / 1MB)