function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Pankaj_GanwaniPankaj_Ganwani 

How to open local(windows explorer) text file on click of detail page button?

Hello experts,

Can anyone have idea How to open local(windows explorer) text file on click of detail page button?

Any help would be appreciated.

Thanks,
Pankaj
@Karanraj@Karanraj
Use file:// <pathName> to access local file from salesforce or any web application
HYPERLINK("file://<path>,"View")
This will work when the user in IE browser, to work in the chrome browser you have to install following chrome extension https://chrome.google.com/webstore/detail/locallinks/jllpkdkcdjndhggodimiphkghogcpida


 
manoharpmanoharp
This solves the problem to some extent but is there a solution to open it in windows explorer? This is better than nothing though. thanks!