Finder - Customize New Folder Name

Joined
Jul 28, 2009
Messages
3
Reaction score
0
Points
1
Location
Aichi, Japan
Your Mac's Specs
27" iMac, 15" MBP
Hi, my first ost here...
Looking for a way in Finder to change the name of every newly created folder, instead of "untitled folder".
I have my naming convention using the date (090727-folder name). Looking for a way how the folder could be created with today's date as a prefix. So i don't have to type the date every time.
(I am on OS X 10.4.11.)
Thanks much for any advice.
 
Joined
Jul 28, 2013
Messages
2
Reaction score
0
Points
1
awesome, I just found your post looking for a tweak for the exact same situation.

I just use following standard 090727 - folder name, looks cleaner ; )


Ever got a reply to your post or found a solution yourself?
 
Joined
Jul 30, 2009
Messages
7,298
Reaction score
301
Points
83
Location
Wisconsin
Your Mac's Specs
Mac Mini (Late 2014) 2.6GHz Intel Core i5 Memory: 8GB 1600MHz DDR3
4 years old!

I'll be surprised if there's a response.
 
OP
moonpixel
Joined
Jul 28, 2009
Messages
3
Reaction score
0
Points
1
Location
Aichi, Japan
Your Mac's Specs
27" iMac, 15" MBP
awesome, I just found your post looking for a tweak for the exact same situation.

I just use following standard 090727 - folder name, looks cleaner ; )


Ever got a reply to your post or found a solution yourself?

Hi hanslaut,
I ended up using the terminal,
did a small bash script, it does create the folder with the right prefix and
does copy it into the clipboard for later use (just because thats what i need it to do):


#!/bin/bash
# if not enough arguments print the usage
if [ $# -lt 1 ]
then
printf "Usage: %s: [-d value]\n" $(basename $0) >&2
exit 1
fi

DT=$(date +"%y%m%d-$DATESTR")

echo "$DT" | pbcopy
echo "$DT" | xargs mkdir -v

exit 0
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top