在SharePoint中,用户可以更新文件。
SPFolder.Files是否会返回SharePoint UI的最新版本文件,或每个文件的1.0版本?
SPSite oSiteCollection = SPContext.Current.Site;
SPWebCollection collWebsites = oSiteCollection.AllWebs;
foreach (SPWeb oWebsite in collWebsites)
{
SPFolderCollection collFolders = oWebsite.Folders;
foreach (SPFolder oFolder in collFolders)
{
SPFileCollection collFiles = oFolder.Files;
答案 0 :(得分:1)
SPFile可以访问所有存储的版本
直接从SPFile获取最新版本的UI。
如果您需要旧版本,则必须浏览Versions属性。