0

我正在使用 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_NameDocument_x0020_Type以及

Check_x0020_Type使用

listItem.Update();

当用户上传文档以及添加元数据时,我只想创建一个版本。这个怎么做 ?您能否提供我可以解决上述问题的任何代码或链接?

4

1 回答 1

0

保持代码不变只需替换“listItem.Update();” “listItem.SystemUpdate(false);” 它将更新元数据并且不会增加版本号。

于 2014-02-26T09:55:33.197 回答