I wonder. When you are in dubbingmode and develop you program you refer to ifstream like in the code below.
ifstream OneFile("Text.txt");
"Text.text" is in the folder debug. Later when the application is finished. I want the file "Text.txt" to be in a folder like this: C:\NewApplication\FileFolder\Text.txt
How am I going to do when I develop my program because the access later will be this directory.
Does this meen that I will change this later when the application is finished ?
Is it possible and correct to write:
ifstream OneFile("C:\NewApplication\FileFolder\Text.txt");