Hand-coded not unless you use a web server (you don't need to install one, there are many tools to serve a single directory such as PHP or Python built-in servers).
But hard-coded yes: You can't access local filesystem from javascript, but your browser can if you type the (file://
) url in the navigation bar or follow a link pointing to it.
In case of links browsers refuse them in remote pages (from a web server) but not from files that are already local (otherwise you couldn't see a downloaded version of a web page).
I've never tested with absolute paths but (I think) it should work if you have permissions to that directory.
If not, there exists browser extensions, such as this one for Firefox that allows to open that links (if the user accepts it).
The problem is that, as I said, you need to put the links manually in the page and if there are so many it could take some time unless you are used to a real editors such as Vim or, at least, you are able to generate it using any programming language you like.