Select files not beginning with space character

English support forum

Moderators: Hacker, petermad, Stefan2, white

Post Reply
OUrm7Vo2
Junior Member
Junior Member
Posts: 80
Joined: 2003-04-17, 18:50 UTC

Select files not beginning with space character

Post by *OUrm7Vo2 »

Shouldn't the following file type specification select all files not beginning with the space character?

| *.*

It returns 'No matches found!'


If I substitute the space character with other characters it works as expected.
User avatar
Gral
Power Member
Power Member
Posts: 1609
Joined: 2005-01-26, 15:12 UTC

Post by *Gral »

Try
*.*|" *.*"
or
|" *.*"
or simply
|" *"
Post Reply