Is it possible to list files that don't have extension?


You need to specify *.?* as the Exclude files filter. (This works because you cannot put . at the end of file name)
Technical details: the match is based on PathMatchSpecEx (ex. PathMatchSpec) Windows API function.