CycloWizard
Lifer
I work on a lot of projects at a given time and am trying to make myself a quick reference HTML page to manage them. Each project usually has 2-3 folders associated with it (e.g. "Simulation program", "Report", et cetera). I would like to be able to link to these various folders in the HTML page such that when I click on them, they will open in Windows Explorer (or, if it's a file, the default program or some target program?). I spent a bit of time searching for how to do this, but couldn't really come up with anything. The basic code is really simple, but it just opens the linked folder in the browser rather than in Windows Explorer.
I'm sure there's a simple way to do this, but I'm not finding it. Any help is appreciated.
edit: Just thought that this might be a security risk or something, so maybe it's not possible?
Code:
<h1>Project #1</h1>
<ul>
<li><a href="file:///C:/Papers/">Report</a></li>
<li><a href="file:///C:/Programs/">Program</a></li>
</ul>
I'm sure there's a simple way to do this, but I'm not finding it. Any help is appreciated.
edit: Just thought that this might be a security risk or something, so maybe it's not possible?
Last edited: