Store documents in file system instead of database in SharePoint document library

和自甴很熟 提交于 2019-12-10 04:13:43

问题


In a SharePoint document library, is there any way to store the documents on the file system instead of the database?


回答1:


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.




回答2:


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.



来源:https://stackoverflow.com/questions/1295535/store-documents-in-file-system-instead-of-database-in-sharepoint-document-librar

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!