Skip to content

Tag Archives: filesystem

MacFuse on 64bit Snow Leopard 10.6.3

28-May-10

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 [...]

Recursively list all files and directories below a given directory

12-Nov-09

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 [...]

Object Oriented Python File Selection

13-Oct-09

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 [...]