1
Open the HTML file with Internet Explorer. This causes a Windows Explorer window to open. It is possible to choose another extension to the file (for example .HTM) and set to Internet Explorer to open by default.
1
-1
Open the HTML file with Internet Explorer. This causes a Windows Explorer window to open. It is possible to choose another extension to the file (for example .HTM) and set to Internet Explorer to open by default.
Browser other questions tagged html windows link briefcase
You are not signed in. Login or sign up in order to post.
Try as follows: <a href="file:///home/username">Link</a>
– Bruno Miqueas
vc will not be able to open this way without determining the file inside the folder. If you have an index.html file, you should put so for example
href="file:///D:\index.html"
the browser will not open a Windows Explorer folder in the window... unless it is via ftp by the server or making a direct access to the folder on a server, not on the client’s local machine.– hugocsl
I understood that you want to open the Windows Explorer (file manager) by clicking on a link in the browser, that’s it?
– Marcelo
The browser usually does not open folders from your computer but files located in folders from the tag
<a href="local do arquivo">Título do arquivo</a>
– MirandaCC97