| Mojolicious documentation | view source | Contained in the Mojolicious distribution. |
Mojo::Upload - Upload Container
use Mojo::Upload;
my $upload = Mojo::Upload->new;
print $upload->filename;
$upload->move_to('/foo/bar/baz.txt');
Mojo::Upload is a container for uploads.
Mojo::Upload implements the following attributes.
assetmy $asset = $upload->asset; $upload = $upload->asset(Mojo::Asset::File->new);
Asset containing the uploaded data, defaults to a Mojo::Asset::File object.
filename my $filename = $upload->filename;
$upload = $upload->filename('foo.txt');
Name of the uploaded file.
headersmy $headers = $upload->headers; $upload = $upload->headers(Mojo::Headers->new);
Headers for upload, defaults to a Mojo::Headers object.
name my $name = $upload->name;
$upload = $upload->name('foo');
Name of the upload.
Mojo::Upload inherits all methods from Mojo::Base and implements the following new ones.
move_to $upload->move_to('/foo/bar/baz.txt');
Move uploaded data to a specific file.
sizemy $size = $upload->size;
Size of upload in bytes.
slurpmy $string = $upload->slurp;
Read all upload data at once.
Mojolicious, Mojolicious::Guides, http://mojolicio.us.
| Mojolicious documentation | view source | Contained in the Mojolicious distribution. |