Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>

share|improve this question
7  
@theJinx come on, come off your high horse. He seems to know what system(s) he is going to run this on, otherwise he couldn't specify a local link in such detail. And linking to a local resource is not that obvious a security issue, either, especially in local network context. – Pekka 웃 Mar 9 '11 at 13:22
@theJinx : Yes I do know that my app runs only on windows and I can also confirm that every system will be mapped to "D:/Tools" for sure. – Satya Mar 10 '11 at 6:16

5 Answers

up vote 14 down vote accepted

Linking to local resources is disabled in all modern browsers due to security restrictions.

For Firefox:

For security purposes, Mozilla applications block links to local files (and directories) from remote files. This includes linking to files on your hard drive, on mapped network drives, and accessible via Uniform Naming Convention (UNC) paths. This prevents a number of unpleasant possibilities, including:

  • Allowing sites to detect your operating system by checking default installation paths
  • Allowing sites to exploit system vulnerabilities (e.g., C:\con\con in Windows 95/98)
  • Allowing sites to detect browser preferences or read sensitive data

for IE:

Internet Explorer 6 Service Pack 1 (SP1) no longer allows browsing a local machine from the Internet zone. For instance, if an Internet site contains a link to a local file, Internet Explorer 6 SP1 displays a blank page when a user clicks on the link. Previous versions of Windows Internet Explorer followed the link to the local file.

for Opera (in the context of a security advisory, I'm sure there is a more canonical link for this):

As a security precaution, Opera does not allow Web pages to link to files on the user's local disk

share|improve this answer
But I can browse the local files and directories in Mozilla and IE via "file:///D:/Tools/" in URL . I use Mozilla 3.6 and IE 8. If I use the same URL for anchor tags, it does not open up the files and folders – Satya Mar 10 '11 at 6:20
1  
@Satya yup, that's exactly the way the security mechanism is supposed to work - to prevent malicious linking from remote sites – Pekka 웃 Mar 10 '11 at 9:20
What about Chrome? – Odelya Jul 13 '11 at 7:43
@Odelya I don't know a definitive source but from experience, Chrome's handling of local resources is as strict as Firefox's. – Pekka 웃 Jul 13 '11 at 7:46

The following works in all browsers, but as always there are caveats.

Overview:

  1. Security restrictions will not allow you to open a path/launch explorer (as stated above).
  2. Sites hosted externally (not on your local computer) will not allow file:///... uri's under default security permissions.

Solutions:

Provide a downloadable link to the resource (browser behavior explained at end of post).

1. You can produce a .lnk file and save it to the server. (Generally bad form as I will explain, but doable.)

2. You can produce a .url file and either save it to the server or dynamically generate it. (Hint: This is the solution I went with.)

Special Considerations:

Sol 1. => cannot be generated dynamically/in code due to the binary nature of .lnk files.
You must use the com iShellLink interface (see here for example.) I was not able to generate a bogus link in this way due to restrictions in IIS (couldn't get to the shell).

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:

  1. Add .url to the available MIME types in your web server.

    For IIS open the site, choose MIME Types, and add the following: File name Extension= .url MIME type: application/internet-shortcut

  2. The .url file is a text file formatted as follows (again, this can easily be dynamically generated).

    [InternetShortcut]
    URL=file:///D:/

  3. Provide a download link to the script that generates the .url file, or to the file itself.

    If you've simply uploaded a .url file to your server, add the following to your HTML:

    <a href="URIShortcut.url">Round-About Linking</a>

Browser Dependent Behavior

Chrome: Download/Save file.url then open
FireFox: Download/Save file.url then open
Internet Explorer: Click “Open” and go straight to directory (no need to save shortcut)

Internet Explorer has the preferred behavior, but Chrome and Firefox are at least functional.

share|improve this answer

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".

share|improve this answer

you can use

<a href="\\computername\folder">Open folder</a>

in Internet Explorer

share|improve this answer
8  
Yes, but only in IE5. – Pekka 웃 Mar 9 '11 at 13:22

Only IE6-8 - there's an ActiveX workaround this local-files issue in JavaScript:

        function OpenImage(filePath)
        {
            var myshell = new ActiveXObject("WScript.shell");
            myshell.run(filePath, 1, true); 
        }
share|improve this answer
-1: Doesn't work well if ActiveX is disabled (which is is, in most instances). – John Saunders Jan 10 at 1:56
@JohnSaunders: I have seen this functionality implemented in many Intranet web applications, with appropriate configurations for Local-Intranet for specific websites (like [http: //coName-net ]) – Leon Jan 10 at 17:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.