In a SharePoint 2013 document library, I have implemented a JavaScript function that captures user access to files. The function creates a .txt file containing information about the user ID, username, and file path, which is then saved to a network drive location.
While this functionality works smoothly on Internet Explorer, it encounters issues on Chrome due to ActiveX limitations. As enabling IE Tab extension on Chrome is not an option, I attempted using the filesaver.js API. However, this only allows downloading the file to the user's default download folder without specifying a save location path.
Is there an alternative approach for achieving the same results on Chrome? Any suggestions or solutions are greatly appreciated.