首页 > 解决方案 > 如何查找文件夹中文件名末尾没有特定字符的所有文件?

问题描述

标签: powershell

解决方案


使用-Exclude参数:

Get-ChildItem -File -Recurse -Exclude *

推荐阅读