Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4608800
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T00:53:47+00:00 2026-05-22T00:53:47+00:00

Using Sharepoint 2007 object model, I have been looking for an example in C#

  • 0

Using Sharepoint 2007 object model, I have been looking for an example in C# to move an item from one document library to another on the same server and saving the version history (i.e. SPListItemVersion objects) and metadata (the folders have the same content types, etc).

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T00:53:48+00:00Added an answer on May 22, 2026 at 12:53 am

    I was able to accomplish what I wanted to do with the following code:

        /// <summary>  
        /// Adds item to archive  
        /// </summary>  
        /// <param name="item">Item to add</param>  
        /// <param name="destination">Archive path</param>  
        /// <param name="destination">web site of archive</param>  
        /// <returns>Result of arhivation process</returns>  
        public static string ArchiveItem(SPListItem item, string destination, SPWeb web)
        {
            // Save main meta information for later use:  
            var author = item.File.Author;
            var modifiedBy = item.File.ModifiedBy;
            var modified = item.File.TimeLastModified;
    
            var created = item.File.TimeCreated;
            // Get destination filename:  
            var destinationFile = destination + "/" + item.File.Name;
            // Copy the item and set properties:  
            var coppiedFile = web.GetFolder(destination).Files.Add(
                destinationFile,
                item.File.OpenBinary(),
                author,
                modifiedBy,
                created,
                modified
            );
            coppiedFile.Item["Created"] = created;
            coppiedFile.Item["Modified"] = modified;
            // Save changes, UpdateOverwriteVersion causes object to save without saving a new version.
            coppiedFile.Item.UpdateOverwriteVersion();
            // If moving is enabled, delete original item:  
            item.Delete();
    
            return coppiedFile.ServerRelativeUrl;
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using the SharePoint 2007 object model API to assign a role to a
we have a big portal that build using SharePoint 2007 , asp.net 3.5 ,
I have a Sharepoint 2007 internet site using Microsoft commerce server 2009. I need
I'm trying to use the object model of Sharepoint 2007 to make some changes
I've been developing using Sharepoint 2007 on a VM, and recently tested some functionality
I am using SharePoint 2007 workflows for document approval process. When I terminate a
We are currently using TFS 2010 and have a Team site of SharePoint 2007.
I am using SharePoint Server 2007 + C# + .Net 3.5 + VSTS 2008
we are using SharePoint Server (MOSS 2007) with Windows Integrated Security. A few computers
I've created a list using the SharePoint (MOSS 2007) Issue Tracking List. A Comments

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.