Subj : Re: C++ API for files & directory manipulation To : comp.programming From : Rob Thorpe Date : Sat Sep 03 2005 11:09 am Ram wrote: > Hi, > > I am looking for a portable library in C++ for manipulating files & > directories e.g. directory traversal, file addition/removal, etc. > Something that can work on Windows, Linux as well as Mac. > > Anyone aware of the same? You may be surprised at how similar they are. The two Unix systems are certainly very similar and Windows has many unix functions hidden away with an underscore in front of them, like _fdopen. You could also look glib in gtk+. .