It's an invalid file name, so it should return an error indicating such.

Not so.

When you type "" on the command line, the program never sees the "s as they are processed by the command line processor. What the program receives is an empty string.

In a very (perlish) pragmatic manner, the OS chooses to use what would otherwise be a nonsensical value -- to which even an error message of "Illegal filename" would be wrong, because strictly, they haven't supplied any file name -- to have a meta meaning and utilises it.

In this case, it would be nonsensical to dir/stat files matching 'nothing', so it ascribes that value the meta meaning -- a default value -- of 'everything'.(*)

That is no different to many perl built-ins using $_ if they receive no parameters. Or *nix taking a bare ls to mean everything. (The fact that they issue an "No such file or directory" message to ls '' is both strictly wrong; and missing a trick.)

Pure pragmatism of the kind that Perl does so well.

Whilst I could understand -- but disagree with -- a Java programmer saying yuck to such pragmatism, it strikes me as disjoint coming from a Perl aficionado like you.

* It is even logical at the CS level, in that, the empty string is a vaild substring of every possible string.)


With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

RIP Neil Armstrong


In reply to Re^5: true from (-e "") on Windoze (" is an illegal filename character by BrowserUk
in thread true from (-e "") on Windoze by CarolinaPerler

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.