windows系统查找文件-通配符的使用

在windows中可以使用通配符“* ”、“? ”查找文件。
对于相同字符开头的单词和相同字符结尾的单词可以用“<”和“ >”通配符查找单词。
1、如果要查找: 任意单个字符 :
键入 ? 例如,s?t 可查找“sat”和“set”……。
2、任意字符串 :
键入 * 例如,s*d 可查找“sad”和“started”……。
3、单词的开头
键入 < 例如,<(inter) 查找“interesting”和“intercept”……,但不查找“splintered”。
4、单词的结尾
键入 > 例如,(in)> 查找“in”和“within”……,但不查找“interesting”

原文地址:https://www.cnblogs.com/Tpf386/p/9525376.html