mojo::upload(3pm) debian man page | unix.com

Man Page: mojo::upload

Operating Environment: debian

Section: 3pm

Mojo::Upload(3pm)					User Contributed Perl Documentation					 Mojo::Upload(3pm)

NAME
Mojo::Upload - Upload container
SYNOPSIS
use Mojo::Upload; my $upload = Mojo::Upload->new; say $upload->filename; $upload->move_to('/home/sri/foo.txt');
DESCRIPTION
Mojo::Upload is a container for uploads.
ATTRIBUTES
Mojo::Upload implements the following attributes. "asset" my $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. "headers" my $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.
METHODS
Mojo::Upload inherits all methods from Mojo::Base and implements the following new ones. "move_to" $upload->move_to('/home/sri/foo.txt'); Alias for "move_to" in Mojo::Asset::File. "size" my $size = $upload->size; Alias for "size" in Mojo::Asset::File. "slurp" my $string = $upload->slurp; Alias for "slurp" in Mojo::Asset::File.
SEE ALSO
Mojolicious, Mojolicious::Guides, <http://mojolicio.us>. perl v5.14.2 2012-09-05 Mojo::Upload(3pm)
Related Man Pages
mojo::ioloop::delay(3pm) - debian
mojo::message(3pm) - debian
mojo::parameters(3pm) - debian
mojo::server::cgi(3pm) - debian
mojo::useragent::transactor(3pm) - debian
Similar Topics in the Unix Linux Community
Ftp Limit issue
The LimitRequestBody filed in openSUSE 10.2
Run two CGIs simultaneously and Ajax to read updated value from CGI1
Trying to combine upload and download totals from txt file by ip address
FTP a file on Hourly basis