Powershell 批量删除指定后缀名的文件(以json 为例)| 如何删除文件而保留文件夹
# 删除指定文件
PS D:\Data\Documents> Remove-Item * -Include *.json -Recurse
# 删除文件而保留文件夹
# 「This example deletes all of the files that have names that include a dot (.) 」
PS D:\Data\Documents> Remove-Item * -Include *.* -Exclude *.md -Recurse
# 删除包含指定字符的文件夹
# 一定要注意加上通配符「*bin*」,否则只会删除bin这样的文件夹
PS D:\Data\Documents> Remove-Item * -Recurse -Include *bin*
注意添加 * 作为路径
参考资料
本博文本意在于记录个人的思考与经验,部分博文采用英语写作,可能影响可读性,请见谅
本文来自博客园,作者:ZXYFrank,转载请注明原文链接:https://www.cnblogs.com/zxyfrank/p/14342152.html