How can I open a local folder view by clicking on any link?
I tried many options like
<a href="file:///D:/Tools/">Open folder</a> or
<a onclick="file:///D:/Tools/">Open folder</a> or
<a onclick="window.open(file:///D:/Tools/)">Open folder</a>
|
How can I open a local folder view by clicking on any link? I tried many options like
|
|||||||
|
|
Linking to local resources is disabled in all modern browsers due to security restrictions. For Firefox:
for IE:
for Opera (in the context of a security advisory, I'm sure there is a more canonical link for this):
|
|||||||||||
|
|
The following works in all browsers, but as always there are caveats. Overview:
Solutions:
Special Considerations:
Sol 2. => CAN be generated dynamically as this is nothing more than a text file. File system access is not a problem as we can now use the "file:///" prefix. Solution Details:
Browser Dependent Behavior Chrome: Download/Save file.url then open Internet Explorer has the preferred behavior, but Chrome and Firefox are at least functional. |
||||
|
|
|
add on click open local directory o local file to google chrome: The solution from JFish222 works ( URL file solution ) For Webkid Browsers like Chrome on Apache Servers just add to .htaccess o http.config this code: SetEnvIf Request_URI ".url$" requested_url=url Header add Content-Disposition "attachment" env=requested_url And by the first downlod of your url file click on the file in chromes downloadbar and select "always open this file". |
|||
|
|
|
you can use
in Internet Explorer |
|||||
|
|
Only IE6-8 - there's an ActiveX workaround this local-files issue in JavaScript:
|
|||||
|