我想获得以给定后缀结尾的所有路径(例如'example / subpath / string')。在Windows cmd中有没有简单的方法呢?
答案 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
)的行
根据需要进行调整