It does vary by operating system. As others have mentioned, on Unix-type systems it works the way you've observed. On Win32, at least in my experience (unless there's some secret API I don't know about), it's simply not possible to delete a file that is opened by another (or the same, for that matter) process. This is the sort of semantic difference between OS's that no programming language can make up for. Of course, the authors of Perl being the nice people they are, have documented this in perlport :
Some platforms can’t delete or rename files held open by the system, this limitation may also apply to changing filesystem metainformation like file permissions or owners. Remember to "close" files when you are done with them. Don’t "unlink" or "rename" an open file. Don’t "tie" or "open" a file already tied or opened; "untie" or "close" it first.

In reply to Re: What if FILE deleted during WHILE read-in loop? by Errto
in thread What if FILE deleted during WHILE read-in loop? by punch_card_don

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.