Hi, I have a RadFileExplorer. I use CustomColumnsContentProvider to load the Treeview but when I use UNC path, base.ResolveRootDirectoryAsTree(path) shows error "Failed to map the path '\\SampleServer\FolderName'"
Here is my Code:
web.config:
aspx.cs:
CustomColumnsContentProvider:
How can I access UNC in ResolveRootDIrectory?
Here is my Code:
web.config:
<add key="UNCPath" value="\\SampleServer\\FolderName" />aspx.cs:
RadFileExplorer1.Configuration.ViewPaths = new string[] { ConfigurationManager.AppSettings["UNCPath"] };CustomColumnsContentProvider:
public override DirectoryItem ResolveRootDirectoryAsTree(string path)
{
DirectoryItem originalFolder = base.ResolveRootDirectoryAsTree(path);Shows error on this part: DirectoryItem originalFolder = base.ResolveRootDirectoryAsTree(path);How can I access UNC in ResolveRootDIrectory?
