在 windows 中递归搜索字符串

search for string recursively in windows

专家们,

我需要在不同的文件夹和子文件夹中递归搜索一个字符串,并在windows环境中将其保存到一个txt文件中。我执行了下面的脚本,但结果是空的。

findstr /s /i /m /c:"topaz3258" H:\MKS\build\host\dev\*\*.* > H:\topaz3258.txt

由于脚本在多个文件夹和子文件夹下进行检查,我也想将可用字符串的路径存储在一个 txt 文件中。

另外请指教我错在哪里

H:\MKS\build\host\dev\*.*

不能使用通配符指定子目录。