in reply to Re: How to open the file exists in web link
in thread How to open the file exists in web link
Perl does not allow you to directly access a file over the HTTP-protocol through a filehandle
Perl has a pluggable IO system, so that's not really true. For example, it allows the following:
open(my $fh, '<:lwp', 'http://...')
The catch is the module providing the functionality might not exist yet.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: How to open the file exists in web link
by CountZero (Bishop) on Feb 09, 2010 at 07:14 UTC | |
by ikegami (Patriarch) on Feb 09, 2010 at 07:47 UTC |