in reply to Perl File Size Limit

If you built perl with -DUSE_LARGEFILE and your operating system can deal with files of that size then perl should be able to deal with it.
HTH

_________
broquaint

Replies are listed 'Best First'.
Re: Re: Perl File Size Limit
by Juerd (Abbot) on Jun 04, 2003 at 16:12 UTC

    If you built perl with -DUSE_LARGEFILE and your operating system can deal with files of that size then perl should be able to deal with it.

    To easily check if Perl was compiled with large file support, use perl -V (note: that's uppercase V) and see if it contains "uselargefiles=define". Or use the Config module. ($Config{uselargefiles})

    Juerd # { site => 'juerd.nl', plp_site => 'plp.juerd.nl', do_not_use => 'spamtrap' }