windows - Find a specific type of file stored deep in the system -
may know if there cmd or run commands find specific type of file stored deeper number of folders.
eg:i want find .docx file stored deeper 2 files in c drive c:\folder1\folder2\folder3\folder4\sample1.docx
c:\folder1\folder2\sample2.docx
want result show me sample1 , not sample2
is there way achieve this?
dir /s c:\sample1.docx
should locate file.
dir /s /b c:\sample1.docx
should respond full filepath
Comments
Post a Comment