windows 每行包含完整路径的递归命令目录

1u4esq0p  于 2023-01-06  发布在  Windows
关注(0)|答案(2)|浏览(189)

我想在Windows上做一个递归的dir命令,它允许我在每一行都有每个文件的完整路径。
下面是我想用每个文件的完整路径而不仅仅是文件名来改进的示例:
第一个月

    • 当前输出:**
01/01/2012  00:01  1 023 456 fileName.xlsm
02/01/2015  01:02  2 345 678 fileName2.xlsm
    • 预期产出:**
01/01/2012  00:01  1 023 456 C:\Path\To\File\fileName.xlsm
02/01/2015  01:02  2 345 678 C:\Path\To\Other\File\fileName2.xlsm
py49o6xq

py49o6xq1#

多亏了lunacodes,我才能用它的解决之道来改进我的答案。
以下是我提供的对我的案例有帮助的输入:
第一个月

dgtucam1

dgtucam12#

要么是你过于复杂化了,要么是Windows findstr自2015年以来有所改进。

dir /s /b | C:\Windows\System32\findstr.exe /r /c:".xlsm"

这主要归功于https://www.kunal-chowdhury.com/2016/07/findstr-command.html

相关问题