Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Has a filehandle been binmode'd

by fireartist (Chaplain)
on Feb 27, 2006 at 11:52 UTC ( [id://532999]=perlquestion: print w/replies, xml ) Need Help??

fireartist has asked for the wisdom of the Perl Monks concerning the following question:

Is there a way to check whether binmode() has been called on a filehandle?

If not, I notice in the perl source file PerlIO/via/via.xs that there's a method PerlIO_modestr which might help, but I lack the tuits to look into this further. Any pointers appreciated.

Replies are listed 'Best First'.
Re: Has a filehandle been binmode'd
by borisz (Canon) on Feb 27, 2006 at 14:04 UTC
    See PerlIO and then the get_layers function.
    my @l = PerlIO::get_layers($fh, details => 1);
    Boris
Re: Has a filehandle been binmode'd
by derby (Abbot) on Feb 27, 2006 at 13:53 UTC

    Hmmm ... well you could try Fcntl; however, it may not be supported on your platform:

    !#/usr/bin/perl use Fcntl; open( FH, "<", "/bin/cat" ) or die "cannot open file: $!\n"; $flags = fcntl(FH, F_GETFL, 0) or die "Can't get flags for the file: $ +!\n"; if( $flags | O_BINARY ) { print "OPEN FOR BINARY\n" }
    -derby

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://532999]
Approved by marto
Front-paged by bart
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (2)
As of 2024-04-25 19:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found