0

So I am creating an offline webpage in which I have to make Html open a folder. This is the code I am using

<html>
<head>
</head>
<body>
<a href="file:///C:\Users\Hi\Desktop\Bro">Click me</a>
</body>
</html>

The code is not working,any changes which can make it work??

Ayubhai Shah
  • 97
  • 10

3 Answers3

0

try this

<html>
<body>
    <a href="C:\Users\youruserName\Desktop\yourfile">open</a>
</body>
</html>
Jephren Naicker
  • 336
  • 1
  • 2
  • 18
0

Try this..
file:///C:/Users/Hi/Desktop/Bro

prasad
  • 49
  • 4
0

I got it, window.open method of javascript worked.

Ayubhai Shah
  • 97
  • 10