If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
As it's not possible to create NULL-extension files on Windows, the zip is created on a Mac, isn't it? What happens extracting on a Windows System? Are the files refused or are they the right nullextension and spaceextension (I think Windows cuts the extension on creating the files, so filenames differ afterwards)?
Yeah, the extracted file's name won't include the trailing period because Windows doesn't support it.
Filters in the form "*.xyz" trigger an optimization in the filtering logic and "*." also triggers that behavior, but it won't match right (discovered while looking into this for you). Changing to ?*. bypasses that.
Unfortunately since * matches any character including "." the syntax doesn't have a good way to match only files without extensions. The only way to do it is "[^.];[^.][^.];[^.][^.][^.];etc", expanded out to the maximum number of characters any file name can contain.
Comment