在 windows 文件资源管理器中打开 Sharepoint https URL

Open Sharepoint https URL in windows file explorer

我正在尝试在 windows 资源管理器中打开我的共享点文件夹结构,因为它想从办公室桌面(使用办公室插件)访问共享点文件夹。

这样的东西
window.open('file:///https://servername.sharepoint.com/teams/') 

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

我试过下面的东西。 首先我尝试了

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

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

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

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

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

windows explorer with sharepoint URL

为什么 windows 资源管理器 - 提供 office 加载项集成外观,我不想在浏览器中打开 Sharepoint link。所以我尝试打开对话框,但在打开的对话框中我们无法设置位置路径。 所以最后我们决定使用 windows explorer

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

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

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

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

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