Catalyst::Request::Upload - handles file upload requests
my $data_part =
To specify where Catalyst should put the temporary files, set the 'uploadtmp' option in the Catalyst config. If unset, Catalyst will use the system temp dir.
__PACKAGE__->config( uploadtmp => '/path/to/tmpdir' );
See also Catalyst.
This class defines the following immutable attributes
The raw data as returned via HTTP::Body.
The part name that gets extracted from the content-disposition header.
The raw byte count (over http) of the data. This is not the same as the character length
An HTTP::Headers object that represents the submitted headers of the POST. This object will handle the following methods:
These three methods are the same as methods described in HTTP::Headers.
Factory method to build an object from part data returned by HTTP::Body
Returns true if there more than one header (indicates the part data is complex and contains content type and encoding information.).
Catalyst Contributors, see Catalyst.pm
This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself.