我想查找.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}