question is basically as stated in the title.
I am using an API that needs forward slashes regardless of OS (don't shoot the messenger, I don't think this is good practice either). Is there a way to force boost::filesystem::path
's member function make_preferred()
always use forward slashes as default even on a windows machine?
If not, is there a more efficient method than just straight up replacing every \\
with /
?