cmd - Finding files with a certain pattern in the filenames -


I just want to find patterns in filenames not in filenames. For content, I can use the findstr but I want to find the filename for the pattern.

from the directory on which you want to start the search:

  Dir / s * substring *. *   

This will search through all the subdirectories (due to the '/ S' option), starting now, 'substrings' string and all files with an arbitrary extension searching for. Of course this is an example; You can enter * substring *. * can be replaced with any other regex.

Comments

Popular posts from this blog

Pass DB Connection parameters to a Kettle a.k.a PDI table Input step dynamically from Excel -

multithreading - PhantomJS-Node in a for Loop -

c++ - MATLAB .m file to .mex file using Matlab Compiler -