Windows XP 搜索具有特定名称长度的文件

Windows XP 搜索具有特定名称长度的文件

我想查找.txt文件夹中的所有文件,其文件名以 开头r,且长度不超过 4 个字符(<=4)

查询是什么?(在 Windows XP 中)

答案1

r???.txt可以。问号代表每个字符,因此它将匹配所有以 开头且不r超过 4 个字符的 txt 文件。

或者

电源外壳
get-childitem c:\ -r r*.txt |? {$.GetType().Name -match "File" } |? {$.basename.length -le 5} | %{$_.name}

相关内容