Read a file in java from a linked folder in eclipse
So I'm attempting to read a file in an Eclipse Java project. The resource itself is in a linked folder that I've added using: New -> Folder. Advanced >> Link folder etc. I couldn't open the file so I wrote a simple method to find out what I could access: public static void main(String[] args) { File folder = new File("."); S...