Example code:

my $ua = LWP::UserAgent->new;  
my $response = $ua->get('http://example.com/file.zip');
if ($response->is_success) {
    # get the filehandle for $response->content
    # and process the data
}
else { die $response->status_line }

I need to open the content as a file without prior saving it to the disk. How would you do this?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

You can open a fake filehandle that points to a scalar. If the file argument is a scalar reference, Perl will treat the contents of the scalar as file data rather than a filename.

open my $fh, '<', $response->content_ref;

while( <$fh> ) { 
    # pretend it's a file
}
link|improve this answer
1  
Or, more efficiently, open my $fh, '<', $response->content_ref; – cjm Mar 2 '10 at 19:36
Cool, I didn't know about content_ref. I'll update the answer. – friedo Mar 2 '10 at 19:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.