I have seen this annoying question again and again. Could you please share your knowledge that might help us to find the answer.
My confusion is that, forward-slash is posix standard but directory structure of operating systems are different.
Thank you
What is the correct syntax for portable fstream file paths?
(e.g. the string you would pass to std::fstream:open() to open a file.)
A. "::directory:file.bin"
B. "C:/Directory/File.bin"
C. "/directory/file.bin"
D. "C://Directory//File.bin"
E. std:fstream file paths are not portable.