GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Mojo::Upload(3) User Contributed Perl Documentation Mojo::Upload(3)

Mojo::Upload - Upload

  use Mojo::Upload;

  my $upload = Mojo::Upload->new;
  say $upload->filename;
  $upload->move_to('/home/sri/foo.txt');

Mojo::Upload is a container for uploaded files.

Mojo::Upload implements the following attributes.

  my $asset = $upload->asset;
  $upload   = $upload->asset(Mojo::Asset::File->new);

Asset containing the uploaded data, usually a Mojo::Asset::File or Mojo::Asset::Memory object.

  my $filename = $upload->filename;
  $upload      = $upload->filename('foo.txt');

Name of the uploaded file.

  my $headers = $upload->headers;
  $upload     = $upload->headers(Mojo::Headers->new);

Headers for upload, usually a Mojo::Headers object.

  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.

  $upload = $upload->move_to('/home/sri/foo.txt');

Move uploaded data into a specific file.

  my $size = $upload->size;

Size of uploaded data in bytes.

  my $bytes = $upload->slurp;

Read all uploaded data at once.

Mojolicious, Mojolicious::Guides, <https://mojolicious.org>.
2021-12-08 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.