Contact Support
Accessing shared folder
7 Sep 20171 minute to read
Using “FileExplorer”, you can manage the files that are available in a shared folder of another system which is connected through LAN. Refer following steps, here you will see the details about accessing the shared folder with FileExplorer.
First you have to specify the shared folder path in any of following formats.
- “//Server/SharedFolder”
- “//Server”
Refer following code block to load the shared folder in our FileExplorer component.
(function () {
var fileSystemPath = "//Server/SharedFolder";
var ajaxActionHandler = "/FileOperations";
$("#fileExplorer").ejFileExplorer({
path: fileSystemPath,
ajaxAction: ajaxActionHandler,
width: "100%",
layout: "tile"
});
});
NOTE
In above code block, please specify the action method and shared folder path that is integrated with your server.
Authentication problem in shared folder
If shared folder is restricted with authentication, that time you are not able to access this folder using our FileExplorer. Here you will get an exception like “System.UnauthorizedAccessException, Please add your windows credential details to open ‘\server'”. In order to solve this problem, you have to add the shared folder credential details in the windows credential manager that is available in your service hosted machine.