I just spent a good bit of time searching Google on how to get MacFuse working my 64bit Snow Leopard (10.6.3) machine. Here is what I found. MacFuse for Snow Leopard ( 10.6.3 ) You don’t really need MacFusion 2 but it puts a nice interface on MacFuse. It included the SSHFS and FTPFS files [...]
This is Objective-C code for listing all the files and directories below a given directory. I wrote and tested this on OSX 10.6.2 and XCode 3.2.1. /* This is example code of how to walk a directory recurisively and create a flat list of fully qualified names for all the files and directories under the [...]
Here is some Python code I have found useful when working with selecting files in the filesystem to operate on. This FileSet object works very much like the Java Ant task of the same name. class Action: """ Actions are things that can be executed. """ def execute(self): pass class PatternSet: """ Pattern set provides [...]