在RadFileExplorer中加载UNC路径

时间:2013-04-23 03:40:48

标签: c# asp.net telerik unc

我有一个RadFileExplorer,我想在UNC路径下加载文件夹以在我的资源管理器上显示。我的问题是,它有错误“无法映射路径\ ...”。我在网上搜索但没有找到任何解决方案。

这是我的代码:

的web.config:

<appSettings>
     <add key="UNCPath" value="\\Sample\Operation\Documents"  />
</appSettings>

aspx.cs:

RadFileExplorer1.Configuration.ViewPaths = new string[] { ConfigurationManager.AppSettings["UNCPath"] };

CustomProvider:

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中加载它?感谢

2 个答案:

答案 0 :(得分:1)

RadFileExplorer不支持开箱即用。您需要创建自定义文件提供程序并添加文件处理程序。此KB包含更多信息http://www.telerik.com/support/kb/aspnet-ajax/fileexplorer/details/use-radfileexplorer-with-physical-and-shared-folder-s-paths

答案 1 :(得分:0)

如果您逃离了\\\\ Sample \\ Operation \\ Documents \\

的路径,会发生什么