Re: Time Stamp String
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