I've read the old an new docs and found only the following.

Old perl

perl-5.005_03 perlport
glob EXPR
glob

    Globbing built-in, but only * and ? metacharacters are supported. (Mac OS)

    Features depend on external perlglob.exe or perlglob.bat. May be
 overridden with something like File::DosGlob, which is recommended. (Win32)

    Globbing built-in, but only * and ? metacharacters are supported. Globbing
 relies on operating system calls, which may return filenames in any 
order. As most filesystems are case-insensitive, even ``sorted'' filenames
 will not be in case-sensitive order. (RISC OS) 

perl-5.005_03 perlop
Because globbing invokes a shell, it's often faster to call readdir() yourself
 and do your own grep() on the filenames. Furthermore, due to its current
 implementation of using a shell, the glob() routine may get ``Arg list too long''
 errors (unless you've installed tcsh(1L) as /bin/csh).


perl-5.005_02 perlwin32
File Globbing

    By default, perl spawns an external program to do file globbing. The install
 process installs both a perlglob.exe and a perlglob.bat that perl can use for
 this purpose. Note that with the default installation, perlglob.exe will
 be found by the system before perlglob.bat.

Modern perl

perlport
glob
This operator is implemented via the File::Glob extension on most platforms. 
See File::Glob for portability information.

perlwin32
File Globbing
By default, perl handles file globbing using the File::Glob extension, which 
provides portable globbing.
And both old & new perls say:
Don't count on filename globbing. 
Use opendir, readdir, and closedir instead.
Why can't I count on globbing in a modern perl? I found nothing in the docs.

In reply to Re^4: Portability of glob function in a modern perl by ccn
in thread Portability of glob function in a modern perl by ccn

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.