Are you referring to the script needing to read its own create time? Generally, this isn't possible because create time is not stored anywhere (ctime is inode change time since the epoch -- though I've read that it really is create time on MacOS). The closest you will be able to do is use stat to pull up some file statistics for it. Check out File::stat for getting to this information easier.

I think this should get you the ctime (which is the closest you'll get):

my $filename = 'somescript.pl'; my $ctime = (stat $filename)[10];

If you're trying to find the time for when you're writing a file to a server, something like this can help:

($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst) = localt +ime(time);
That will pull up localtime info that you can play with to your heart's content. However, I understand that localtime is or will be deprecated.

Cheers,
Ovid


In reply to (Ovid) Re: time the file is put inside the server by Ovid
in thread time the file is put inside the server by vrempire

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.