[Java] FileWriter writes file in nbcode folder instead of res folder
📰 Reddit r/learnprogramming
[Java] I have a parent folder names "Testing" which have src and res folders in it, src have my code. I used to write in Eclipse and FileWriter writer = new FileWriter("res\\settings.txt"); Saves it just fine in my res folder but I changed to vscode recently and the exact code spat out this error instead. java.io.FileNotFoundException: res\settings.txt (The system cannot find the path specified) I
DeepCamp AI