I want to watch a folder on my Mac (Snow Leopard) and then execute a script (giving it the filename of what was just moved into a folder (as a parameter... x.sh "filename")).

I have a script all written up in bash (x.sh) that will move some files and other stuff on input $1 I just need OSX to give me the file name when new files/folders are moved/created into a dir.

Any such command?

link|improve this question

You should ask how DropBox does it since presumably they tried all the available options. – Jeff Burdges Oct 25 '11 at 14:06
feedback

4 Answers

up vote 13 down vote accepted

You can use launchd for that purpose. Launchd can be configured to automatically launch a program when a file path is modified.

For example the following launchd config plist will launch the program /usr/bin/logger when the desktop folder of my user account is modified:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>Label</key>
 <string>logger</string>
 <key>ProgramArguments</key>
 <array>
  <string>/usr/bin/logger</string>
  <string>path modified</string>
 </array>
 <key>WatchPaths</key>
 <array>
  <string>/Users/sakra/Desktop/</string>
 </array>
</dict>
</plist>

To activate the config plist save it to the LaunchAgents folder in your Library folder as "logger.plist".

From the shell you can then use the command launchctl to activate the logger.plist by running:

launchctl load ~/Library/LaunchAgents/logger.plist

The desktop folder is now being monitored. Every time it is changed you should see an output in the system.log (use Console.app). To deactivate the logger.plist, run:

launchctl unload ~/Library/LaunchAgents/logger.plist

The configuration file above uses the WatchPaths option. Alternatively you can also use the QueueDirectories option. See the launchd man page for more information.

link|improve this answer
is there a way to have it monitor change in file content as well as the file path? – Cam Feb 7 at 0:27
I don't think so. You can use opensnoop for that purpose. – sakra Feb 7 at 8:28
feedback

You might want to take a look at (and maybe expand) my little tool kqwait. Currently it just sits around and waits for a write event on a single file, but the kqueue architecture allows for hierarchical event stacking...

link|improve this answer
I like your tool, it has potential. Will investigate when I have more time. thanks – Mint Feb 12 at 10:21
Your suggestions and feedback are welcome! ;) – sschober Feb 14 at 10:11
I've implemented waiting on a directory now... – sschober Feb 16 at 16:43
feedback

Apple OSX Folder Actions allow you to automate tasks based on actions taken on a folder.

link|improve this answer
Yeah I know, i'v tried to use that several times, never successfully gotten it to work, could you give me an example? – Mint Oct 4 '09 at 6:26
feedback

watchdog is a cross-platform python API for watching files / directories, and it has builtin "tricks" tool that allows you to trigger actions (including shell commands) when events occur (including new added file, removed file and changed file).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.