06-05-2025, 05:40 AM
A question mark is a wildcard for one character. A star is a wildcard for any number of characters.
DIR a? would work with:
a0
a1
a2
But not:
a01
a02
a03
DIR a* would work with any file that begins with a(anything after).
The * symbol is probably the one you're wanting to use here.
DIR a? would work with:
a0
a1
a2
But not:
a01
a02
a03
DIR a* would work with any file that begins with a(anything after).
The * symbol is probably the one you're wanting to use here.