【问题标题】:Open Sharepoint https URL in windows file explorer [closed]在 Windows 文件资源管理器中打开 Sharepoint https URL [关闭]
【发布时间】:2018-05-24 09:59:07
【问题描述】:

我试图在 Windows 资源管理器中打开我的 sharepoint 文件夹结构,因为它想从 Office 桌面访问 sharepoint 文件夹(使用 office 插件)。

类似的东西

window.open('file:///https://servername.sharepoint.com/teams/') 

但这不起作用。它给出了访问被拒绝错误。

我尝试了以下内容。 首先我尝试了

window.open('file://servername.sharepoint.com/teams/')- 

它在文件资源管理器中打开链接,但作为 http 请求。获取文件后导致身份验证问题。 然后我尝试了:

window.open('file:///https%3A%2F%servername.sharepoint.com/)- 

我尝试使用转义序列和更多组合,但似乎没有任何效果

我想在 windows 资源管理器中打开 sharepoint 文件夹结构,但要正确打开该文档,windows 资源管理器中的链接应该是 https

windows explorer with sharepoint URL

为什么选择 Windows 资源管理器 - 为 Office 插件提供集成外观,我不想在浏览器中打开 sharepoint 链接。所以我尝试打开对话框,但在打开的对话框中我们无法设置位置路径。 所以最后我们决定用windows explorer

【问题讨论】:

  • Windows 文件资源管理器不是浏览器。
  • 你能告诉我们真正的目标是什么吗?为什么要在 Windows 的资源管理器中打开网页?
  • 从我的 Office 添加到任务窗格中,我希望用户可以选择从共享点项目中打开文件,而无需使用浏览器,

标签: javascript jquery windows-explorer


【解决方案1】:

是的,您可以在文件资源管理器中打开 SharePoint 文件夹 URL 路径,如下所示

对于 http 网址 (http://my-domain.sharepoint.com/teams/xxxxxxxx/xxxxxxx/)

 window.open('file://my-domain.sharepoint.com/teams/xxxxxxxx/xxxxxxx/', '_blank'); 

对于 https 网址(https://my-domain.sharepoint.com/teams/xxxxxxxx/xxxxxxx/)

window.open('file://my-domain.sharepoint.com@SSL/teams/xxxxxxxx/xxxxxxx/', '_blank'); 

【讨论】:

  • 是的,它有效!!!
  • 你在哪里输入这些命令?
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2013-07-14
  • 2020-08-29
  • 1970-01-01
  • 2019-03-21
  • 2012-09-29
  • 1970-01-01
  • 2012-06-25
相关资源
最近更新 更多