The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

MongoDB::Async::GridFS::File - A Mongo GridFS file

SYNOPSIS

use MongoDB::Async::GridFS::File;

my $outfile = IO::File->new("outfile", "w");
my $file = $grid->find_one;
$file->print($outfile);

ATTRIBUTES

info

A hash of info information saved with this file.

METHODS

$written = $file->print($fh, 50, 200);

Writes the number of bytes specified from the offset specified to the given file handle. If no $length or $offset are given, the entire file is written to $fh. Returns the number of bytes written.

slurp ($length?, $offset?)

$bytes = $file->slurp(50, 200);
$all   = $file->slurp

Return the number of bytes specified from the offset specified to the given file handle. If no $length or $offset are given, the entire file is return.

AUTHOR

Kristina Chodorow <kristina@mongodb.org>