我有一个 RadFileExplorer,我想加载 UNC 路径下的文件夹以显示在我的资源管理器上。我的问题是,它有错误“无法映射路径 \...”。我在网上搜索但没有找到任何解决方案。
这是我的代码:
网络配置:
<appSettings>
<add key="UNCPath" value="\\Sample\Operation\Documents" />
</appSettings>
aspx.cs:
RadFileExplorer1.Configuration.ViewPaths = new string[] { ConfigurationManager.AppSettings["UNCPath"] };
自定义提供者:
public override DirectoryItem ResolveRootDirectoryAsTree(string path)
{
// Get all folders and filters folder to show
DirectoryItem originalFolder = base.ResolveRootDirectoryAsTree(path); --->ERROR HERE "Failed to map the path \\Sample\Operation\Documents"
}
如何访问 UNC 路径以将其加载到我的 RadExplorer?谢谢