gpt4 book ai didi

powershell - 如何使用powershell删除所有临时文件

转载 作者:行者123 更新时间:2023-12-05 01:37:51 24 4
gpt4 key购买 nike

任何人都知道如何使用 powershell 删除所有临时文件。
Get-ChildItem $env:TEMP\TEMP | Remove-Item -confirm:$false -force -Recurse
我厌倦了这段代码,但它无法工作。
你能建议我任何更好的方法来执行相同的操作吗?

最佳答案

如果您不想看到任何错误,可以像这样使用 -ErrorAction 开关:

Remove-Item -Path $env:TEMP -Recurse -Force -ErrorAction SilentlyContinue

关于powershell - 如何使用powershell删除所有临时文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51530633/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com