我使用sharepoint foundation 2010中的服务器对象模型将文档与元数据一起上传到文档库。我使用以下代码
// Initialize instance of existing site collection
using (SPSite site = new SPSite(siteUrl))
{
//Initailize instance of exiting web site (for e.g. Team Site)
using (SPWeb web = site.RootWeb)
{
//Get list with specified name in the existing web site
SPList list = web.Lists[libraryName];
//Get the collection of folders in the existing web site
String url = list.RootFolder.ServerRelativeUrl.ToString();
SPFolderCollection folders = web.GetFolder(url).SubFolders;
//Add new folder in the exiting collection of folders
SPFolder folder = folders.Add(folderName);
//SPFolder folder = web.GetFolder(siteUrl + "/" + libraryName + "/" + folderName);
//byte[] fileContents = System.IO.File.ReadAllBytes(@fileUrl);
//Add file in the newly added folder with overwrite
var overWrite = true;
SPFile file = folder.Files.Add(saveFileWithName, fileContents, overWrite);
//Get the list item of the newly added file
SPListItem listItem = file.ListItemAllFields;
//Assign values to the fields of newly added file
listItem["User_x0020_Name"] = userName;
listItem["Document_x0020_Type"] = documentType;
listItem["Check_x0020_Type"] = checkType;
//Update the list item with the newly added values to the fields
listItem.Update();
//Get the unique id of the newly added list item
documentGuid = listItem["UniqueId"].ToString();
}
}
上面的代码工作正常。我在文档库上启用了版本控制。当上面的代码运行时,它在文档库中创建了两个版本。一个用
上传文档时SPFile file = folder.Files.Add(saveFileWithName, fileContents, overWrite);
和另一个向列User_x0020_Name
,Document_x0020_Type
和
Check_x0020_Type
使用
listItem.Update();
我想在用户上传文档时只创建一个版本以及添加元数据。这该怎么做 ?能否请您提供我可以解决上述问题的任何代码或链接?
答案 0 :(得分:0)
保持代码相同只需将“listItem.Update();”替换为 “listItem.SystemUpdate(false);” 它将会更新元数据,不会增加版本号。