I need to create, navigate, and remove directories. When I didn't find much support for directory functions in wxWindows, I looked to the STL. But, the STL has limited directory functionality as well. Any recommendation on the best (cross-platform) solution out there?
Also, I am currently using the STL for file reading and writing, because it has the getline() function, (which is very convenient). Does wxWindows have anything like that? All I found was wxFile::Read(...) function that requires a number of bytes to be input. I'd rather read a whole line at a time.