Link a file to a project | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Link a file to a project

How do you specify the path of a new file.txt that is not in the same folder with your project when working with files in C++?

14th Aug 2020, 2:18 PM
Jeff
2 Answers
+ 2
It sounds like you're trying to read or write a file that isn't in the same directory as the source files of your c++ project. You can use either relative or absolute paths. 1. Relative: You could use paths like "../../data/file.txt". 2. Absolute: You could use a path like ifstream ifs( "c:/demo.txt" ); or ifstream file; file.open("C:\\Demo.txt", ios::in); If you run into any confusing file not found errors, try writing a random file name and finding where it went. It is easy for the current working directory to become different from expected.
14th Aug 2020, 3:58 PM
Josh Greig
Josh Greig - avatar
0
Thanks a lot it works
14th Aug 2020, 4:02 PM
Jeff