#include <iostream>
#include <fstream>
int main () {
std::ifstream input ("/home/emilyseville7cfg/Documents/work/C++/Tanya Shibko/Vases/Vases/input.txt");
std::ofstream output ("/home/emilyseville7cfg/Documents/work/C++/Tanya Shibko/Vases/Vases/output.txt");
return 0;
}
When I run it I obtain: /bin/bash: line 1: /home/emilyseville7cfg/Documents/work/C++/Tanya Shibko/Vases/build-Release/bin/Vases: No such file or directory error. I don't realize what should I do to fix it. Where to put my .txt files to read it in the most convenient manner in CodeLite?
Does it work if you remove the space in that filepath, or change it to one without a space? Or, if it's easier, create a space-free symlink to that path?
/home/emilyseville7cfg/Documents/work/C++/Tanya Shibko/Vases/build-Release/bin/Vases seems to be your executable.
Have you check the file is correctly generated (and at the correct place)?