Solved CMD, Search files with second letter x

sandeerius

New Member
Messages
9
Location
Kortrijk
Hello everybody,

Here i am back ;)
I have a new question about the command "dir" in the CMD.
I want to search files with the command "dir" where the second letter is an "x".
I know that the comand for files with the first letter x is:
2014_10_14_13_26_122.png
And i know that the command to search a file with the letter x on an random position is:
2014_10_14_13_19_551.png
But what must i do for searching files with the second letter x.
 
Glad you found it.

This one is wrong though:

... the first letter x is:
C:\Windows\system32> dir C:\x.* /s /b

It should be
C:\Windows\system32> dir C:\x* /s /b

(no . between x and *).
 
Back
Top