Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Re: Unlink Permission Denied

by graff (Chancellor)
on May 03, 2002 at 04:12 UTC ( [id://163704]=note: print w/replies, xml ) Need Help??


in reply to Re: Unlink Permission Denied
in thread Unlink Permission Denied

It's a windows thing!
Yes, indeed. Redirection to a file in unix works like this:
- open output file for truncate (>) or append (>>)
- start all processes involved in the pipeline
- keep data flowing through the pipe to the file till something quits.
In windows/dos, it seems to go something like this:
- run the first process in the pipeline, and put its output somewhere; when it finishes:
- start the next process (if any) and pass it the output created by the previous process
- when the last process is done, write its output to the redirection file.
Maybe windows does something to create the file first (else you'd get a "file not found" error from unlink), but it's protected until the OS is done with it (which is after your process exits).

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://163704]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2024-04-19 16:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found