FileWriter fstream = new FileWriter("abc.txt");
The above code creates the file in the folder, where Eclipse is installed. However, I want to create the file in the bin folder of the Java project.
Or
What is the way to get the path of bin folder of the Java project, in Java?
Please guide.
regards,

