C++でテキストファイルやcsvファイルを読み込むときの,ファイルを置くディレクトリについて
- とりあえず,current working directoryをコンソールに表示して,自分がどこにいるのかを探す
*.c++
#include <unistd.h>
を追加include
*.c++
main()
の下に以下を付け足す。
*.c++
char *cwd ;
cwd=getcwd(NULL, 0);
printf("current working directory:%s\n", cwd);
free(cwd);
- current working directoryにファイルを移す
あるいは
- Preferences -> Locations -> Derived Dataに行って,Pathを変更する