列出CMD中带有后缀的所有路径

时间:2014-05-12 11:05:53

标签: windows cmd

我想获得以给定后缀结尾的所有路径(例如'example / subpath / string')。在Windows cmd中有没有简单的方法呢?

1 个答案:

答案 0 :(得分:0)

dir /ad /s /b c:\startingPoint | findstr /l /e /c:"example\subpath\string"
来自/ad及以下(c:\startingPoint)的dir文件夹(/s)采用裸格式(/b)。使用findstr过滤列表,我们只希望行末(/l)包含文字("example\subpath\string"/c/e)的行

根据需要进行调整