Hi, <br><br>I am swimming in the pool, file uploading. <br><br>I used the Jifty::Web::Form::Field::Upload for a client to upload a file, and I got a file handle in my model as below:<br><br>sub create{<br>
&nbsp; my $self = shift;
<br>&nbsp; my %args = (@_);<br>
&nbsp; $fh = $args{'upload_file'};<br>
&nbsp; ...<br>
}<br><br>the uploading was good(the file handle worked as I expected). Then how do I get file name and extension of an uploaded file? <br><br>I saw the docs of Jifty::Web::Form::Element and Jifty::Web::Form::Field, but not yet...  
<br><br>^^;<br><br><br><br>