in reply to Re: Help with splitting one text file into other text files
in thread Help with splitting one text file into other text files

Depending on the OS and the number of simultaneous handles you need FileCache might also be of interest.

The cake is a lie.
The cake is a lie.
The cake is a lie.

  • Comment on Re^2: Help with splitting one text file into other text files

Replies are listed 'Best First'.
Re^3: Help with splitting one text file into other text files
by Anonymous Monk on Mar 30, 2011 at 15:43 UTC
    Or FileCache::Handle, but what is really needed, is a lexically scoped pragma like autodie, so you can
    use autofilecache; use autodie; my @Fs; for(1..1024){ open my($f),'<',$_; push @Fs, $f; }