vote up -2 vote down star

Do any C++ GNU standalone classes exist which handle paths cross platform? My applications build on Windows and LInux. Our configuration files refer to another file in a seperate directory. I'd like to be able to read the path for the other configuration file into a class which would work on both Linux or Windows.

Which class would offer the smallest footprint to translate paths to use on either system? Thanks

flag

This is a duplicate of stackoverflow.com/questions/122455/… – Mark Biek Sep 23 '08 at 17:31

closed as exact duplicate by Mark Biek Sep 23 '08 at 17:30

2 Answers

vote up 1 vote down check

look at boost::filesystem,

It supports [portable generic path strings][2]

[2]: portable generic path strings

link|flag
vote up 0 vote down

Unless you're using absolute paths, there's no need to translate at all - Windows automatically converts forward slashes into backslashes, so if you use relative paths with forward slash path separators, you'll be golden. You should really avoid absolute paths if at all possible.

link|flag

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