0

I have an excel sheet with links to local folders. To make it more device "friendly" I save it as html. All is fine, but the links open on the web browser, not windows file explorer. I know that html does not open aps, but I do not know if opening a local folder with windows file explorer is considered an app, or I miss something.

Excel: =hyperlink("c:\testfolder")

Of course another suggestion on the matter is welcome...

Marios
  • 11
  • 3
  • Find your answer here: https://stackoverflow.com/questions/855614/what-are-the-ways-to-make-an-html-link-open-a-folder – jack_skellington May 10 '22 at 18:25
  • Sorry, not found. Maybe I was not clear. I use excel, and save the sheet as html file. I am not familiar with html code (so as to intervene on the created html file). – Marios May 10 '22 at 18:43

1 Answers1

0

add file:// to the link

=hyperlink("file://c:\testfolder")