in reply to Re: Answer: How do I read an entire file into a string?
in thread How do I read an entire file into a string?
It is worth noting that File::Slurp does NOT support binmode
Are you sure? From the pod:
If you set the binmode option, then the file will be slurped in binary + mode. my $bin_data = read_file( $bin_file, binmode => ':raw' ) ;
|
|---|