将目录从 SharePoint 站点复制到本地驱动器

发布于 2024-11-18 04:04:19 字数 225 浏览 3 评论 0原文

作为较大批处理脚本的一部分,我需要将目录从 TFS SharePoint 站点复制到本地驱动器。比如:

copy "http://mySharePointSite/sites/MyProjectCollection/MyTeamProject/Shared Documents/Some Folder" C:\Temp

有什么想法我会怎么做吗?

谢谢!

As part of a larger batch script, I need to copy a directory from a TFS SharePoint site down on to the local drive. So something like:

copy "http://mySharePointSite/sites/MyProjectCollection/MyTeamProject/Shared Documents/Some Folder" C:\Temp

Any ideas how I would do this?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

漆黑的白昼 2024-11-25 04:04:19

如果您可以通过本地网络访问运行 SharePoint 的计算机,则可以使用 UNC 路径直接访问文件。

\\servername\sitename\library\

sitename 仅在您实际访问子站点时使用,否则它只是 \\servername\library\

对于团队项目,路径可能略有不同,但您应该能够通过在资源管理器中浏览找到正确的路径。

If you have local network access to the machine running SharePoint, you can use a UNC path to access the files directly.

\\servername\sitename\library\

The sitename is only used if you're actually accessing a sub site, otherwise it's just \\servername\library\

The path may be slightly different for team projects, but you should be able to find the correct path by browsing to it in Explorer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文