? and * are both filename wildcards used by DOS. The difference is that one ? can stand for any one character in the current position, while * can stand for many characters.
For example, suppose the current directory has the following files
a.cab a1.bas b1.bas abcd.bas ab.bas
dir a?.bas will list a1.bas ab.bas
dir a*.bas will list a1.bas abcd.bas ab.bas
dir ?1.bas will list a1.bas b1.bas
dir *1.bas will list a1.bas b1.bas abcd.bas ab.bas, and the 1 after it has no effect here
dir *.* will list all files
For example, suppose the current directory has the following files
a.cab a1.bas b1.bas abcd.bas ab.bas
dir a?.bas will list a1.bas ab.bas
dir a*.bas will list a1.bas abcd.bas ab.bas
dir ?1.bas will list a1.bas b1.bas
dir *1.bas will list a1.bas b1.bas abcd.bas ab.bas, and the 1 after it has no effect here
dir *.* will list all files
我的网志
http://hzmys.blog.163.com/
我的网盘
firststep.qjwm.com
fsmys.ys168.com
ssmys.ys168.com
www.brsbox.com/fsmys
www.brsbox.com/ssmys
www.brsbox.com/ccdos
http://hzmys.blog.163.com/
我的网盘
firststep.qjwm.com
fsmys.ys168.com
ssmys.ys168.com
www.brsbox.com/fsmys
www.brsbox.com/ssmys
www.brsbox.com/ccdos


