I'm trying to open mapped network folders from a simple LAN portal at work to get users to access shared files. Previously I used:
<a href = "file:///...">
This opens a Windows Explorer window in IE11 (and earlier) and a file browser tab in Chrome, but it has no effect when the hyperlink is clicked in Microsoft Edge. How can I give users folder access directly from Edge?
file:///
to be opened, most modern browsers should not allow this since this is a huge security issue. (Imagine a site suddenly opens one of your applications) – Bk Santiago