Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: File::Temp acting strange under Windows XP

by Kenosis (Priest)
on Dec 01, 2012 at 00:14 UTC ( [id://1006540]=note: print w/replies, xml ) Need Help??


in reply to File::Temp acting strange under Windows XP

Your script produced similar results under Win7 when I ran it. However, the following ran equally well on Win7 and Lunix:

use warnings; use strict; use File::Temp qw/tempfile/; my $fh = File::Temp->new(); print "$_\n" for 0 .. 4; $fh->seek( 0, 0 ); print for <$fh>; close $fh

Output:

0 1 2 3 4

IO::File's new_tmpfile can also be used like File::Temp--in case it may work better for you:

... use IO::File; my $fh = IO::File->new_tmpfile or die $!; ...

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-03-29 09:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found