• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Time Stamp String
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Time Stamp String


  • Subject: Re: Time Stamp String
  • From: "Marc K. Myers" <email@hidden>
  • Date: Tue, 15 Mar 2005 22:24:34 -0500

On Mar 15, 2005, at 5:56 PM, Todd Geist <email@hidden> wrote:
Hello Everyone,

I wanted to create a routine that would take the current date and
return it
in the form

yyyymmdd_time

Ex

20050314_46211

I created this script which works just fine but I was wondering if
there was
a better way.
_____________________________
on TimeStampString(theDate)
    set theTS to theDate

    set tid to text item delimiters
    set text item delimiters to ""

    set theYear to the year of theTS
    set theDay to day of theTS as text
    --pad the day number to 2 digits
    set theDay to "0" & theDay as text
    set theDay to items ((count of theDay) - 1) through (count of
theDay) of
theDay

    set theMonth to the month of theTS as number
    --pad the month number to 2 digits
    set theMonth to "0" & theMonth as text
    set theMonth to items ((count of theMonth) - 1) through (count of
theMonth) of theMonth

    set theTime to time of theTS
    set theFullString to theYear & theMonth & theDay & "_" & theTime
as text
    return theFullString

    set text item delimiters to tid

end TimeStampString

If you only need it for the current date/time you can do it in one line:

set dtStamp to do shell script "date +%Y%m%d_%H%M%S"
--> "20050315_222248"

Marc [3/15/05  10:21:52 PM]

_______________________________________________
Do not post admin requests to the list. They will be ignored.
Applescript-users mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


  • Prev by Date: Re: Find in Filemaker 6
  • Next by Date: Re: Applescript-users Digest, Vol 2, Issue 177
  • Previous by thread: Re: Time Stamp String
  • Next by thread: AppleScript feature request - encryption
  • Index(es):
    • Date
    • Thread