J
john.swilting
I recover a file via a form
my $attachement = $cgi->param('attachement');
then
my $oct_long = eval { do {use bytes;length $attachement;};};
and I find myself with the length of characters of the way of the file
whereas I would like to calculate the size of the file
my $attachement = $cgi->param('attachement');
then
my $oct_long = eval { do {use bytes;length $attachement;};};
and I find myself with the length of characters of the way of the file
whereas I would like to calculate the size of the file