I need to have a simple file that will just maps some of my project files and I can click on a link and open a file.
Here is an example
/**
* <a href="./src/java/SomeFileName.java">Here the magic begins</a>
*/
But I am not able to click on a link to open the file.
Is there any way to do this, I don't need it to be a java or any specific file, just that it should be possible to click on a link and open a file.
Any help is highly appreciated.
Thanks
UPDATE
I've also tried
<a href="H:\Development\Java\Projects\SuperProjecct\src\SomeFileName.txt">Here the magic begins</a>
<a href="file:///H:\Development\Java\Projects\SuperProjecct\src\SomeFileName.txt">Here the magic begins</a>