📜  查找文件 - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:06.292000             🧑  作者: Mango

代码示例2
Extremely useful command!!
In Mac and Linux: Define directory where to search as "." for current directory
and then specify the name or regex of file or folder to find.

find . -name "foo*"  

In Windows: Define "/s" for a recursively search and name or regex of file or
folgder to search

dir /s "foo*"