
Mojo::Asset::File - File Asset

use Mojo::Asset::File;
my $asset = Mojo::Asset::File->new;
$asset->add_chunk('foo bar baz');
print $asset->slurp;
my $asset = Mojo::Asset::File->new(path => '/foo/bar/baz.txt');
print $asset->slurp;

Mojo::Asset::File is a container for file assets.

Mojo::Asset::File implements the following attributes.
cleanup my $cleanup = $asset->cleanup;
$asset = $asset->cleanup(1);
handle my $handle = $asset->handle;
$asset = $asset->handle(IO::File->new);
path my $path = $asset->path;
$asset = $asset->path('/foo/bar/baz.txt');
tmpdir my $tmpdir = $asset->tmpdir;
$asset = $asset->tmpdir('/tmp');

Mojo::Asset::File inherits all methods from Mojo::Asset and implements the following new ones.
add_chunk $asset = $asset->add_chunk('foo bar baz');
contains my $position = $asset->contains('bar');
get_chunkmy $chunk = $asset->get_chunk($offset);
move_to $asset = $asset->move_to('/foo/bar/baz.txt');
sizemy $size = $asset->size;
slurpmy $string = $file->slurp;