将文档存储在文件系统中而不是 SharePoint 文档库中的数据库中
在SharePoint文档库中,有没有办法将文档存储在文件系统而不是数据库上?
In a SharePoint document library, is there any way to store the documents on the file system instead of the database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SharePoint 文档库中的文档将始终托管在数据库中。也就是说,您可以使用 UNC 路径访问这些文件,该路径掩盖了它们存储在数据库中的事实。
\\url\sites\yoursite\folder\
您还可以编写一个自定义解决方案(工作流程?),将文件添加到文档库后将其复制到标准文件系统中。
Documents in a SharePoint document library will always be hosted in the database. That said, you can access the files with a UNC path that masks the fact that they are stored in the database.
\\url\sites\yoursite\folder\
You could also write a custom solution (workflow?) that copies the files into a standard file system once they are added to a document library.
您可以使 SharePoint 使用 SharePoint 外部存储 API。换句话说,这不是可以通过 SharePoint 界面访问的某些功能,但系统确实提供了一种您自己构建它的方法。有一些第三方提供商(例如 StoragePoint)可以为您完成这项工作。
You can make SharePoint store its documents outside the DB using the SharePoint External Storage API. In other words, this isn't some functionality accessible through the SharePoint interface, but the system does offer a way of building it yourself. There are third party providers like StoragePoint that will do the job for you.