1

我有一个 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?谢谢

4

2 回答 2

1

RadFileExplorer 不支持此功能。您需要创建自定义文件提供程序并添加文件处理程序。这个知识库有更多信息http://www.telerik.com/support/kb/aspnet-ajax/fileexplorer/details/use-radfileexplorer-with-physical-and-shared-folder-s-paths

于 2014-07-18T10:08:11.903 回答
0

如果您转义到 \\\\Sample\\Operation\\Documents\\ 的路径会发生什么

于 2013-04-23T05:17:42.403 回答