Thanks for the replies.
What I'm wanting is this:
I make a new folder for a new project.
When this happens the contents of another folder (my 'template' folder) copies into my newly created folder.
In other words: I need a basic set of files (a keynote presentation and a text file) for every project I do. When I create a folder for my new project, I want that basic set of files (the keynote template and the text file) to appear in my new project folder.
I think I got it.:
- Code: Select all
If kind is folder
&
Date created is in the last 1 week
Run shell script: cp -f /Users/david/Dropbox/Speaking\ Outlines/bin/templates/* "$1"
Seems to be working, although a_freyer is right: This would run over and over. Especially since I rename the keynote file and text file to match the enclosing folder (the project) name once they appear.
Should I do a
- Code: Select all
If 'date added' is newer than 'date last matched'
condition or something?