Hi --
I'm still confused, though. As far as I remember, "?" is ANY character. The
pattern "* ?*" should pick up any name that has a space and at least one
more character following the space. The pattern "* *" should pick up any
name that has a space and zero or more characters. (Although that would be
an illegal file name...)
I wish Windows would "just do it" and incorporate regular expression
matching ...
Thanks again,
CL
"David Candy" <.> wrote in message
? is a character - it must exist. * is NONE or more characters. It may have
worked without the ?, I didn't try because I learnt long ago to specify ?*
which is one or more characters rather than none or more.