Renaming Picture 1
Renaming Picture 1
- Subject: Renaming Picture 1
- From: Graham Fielder <email@hidden>
- Date: Mon, 21 Jan 2002 17:03:13 -0500
I'm new to AS.
I want to rename a file and add the date, in YY-MM-DD format. The filename
gets altered correctly but the date isn't added!
Here's what I wrote:-
tell application "Finder"
set the date_slug to my format_date_using(the current date, ".", {"YY",
"MM", "DD"})
set filename to filename & " " & date_slug
end tell
Thanks. Graham.