🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

FOPEN won't work no matter what

Started by
0 comments, last by VECTOR 24 years ago
All I want to do is open text file ''tstfile.txt'' in the subdirectory ''data''. project\data\tstfile.txt that simple. I want to read the first string of text out of there, which is: data\hull.bmp but no matter where I tell file.open to get tstfile.txt from, it won''t open it and it will give me ''no file found'' message. code: fstream file; file.open( "data\tstfile.txt", ios::in/ios::nocreate ); if ( !file ) { MessageBox( NULL, "No File", "INFO", NULL ); return 0; } can somebody compile this, and run it to make sure it works?
The object of war is not to die for your country, but to make the other bastard die for his . . -General MacArthur
Advertisement


C/C++ uses ''\'' as an escape character for things like ''\n'' for newline and ''\t'' for tab. So when using it for path names you have to use \\. So you''d have "data\\tstfile.txt"


Andrew



This topic is closed to new replies.

Advertisement