Matthew Hodgson wrote:
Hi,

I could have sworn that at some point under Apache/1.3.27 and mod_perl/1.27
I had the ability to find a timestamp of some kind for uploaded files using
Apache::Upload.  To be precise, I thought that:

$upload = $apr->upload;
$filehandle = $upload->fh;
$timestamp = (stat($filehandle))[9];

I would think that would work (on unix variants, at least)

the other thing you can try is (stat($upload->tempname))[9]

HTH

--Geoff

Reply via email to