up vote 3 down vote favorite
2
share [g+] share [fb]

What's the best way to move a document from one doc library to another? I don't care about version history or preserving CreatedBy and ModifiedBy metadata...

SPList lib1 = (SPDocumentLibrary) web.Lists["lib1"];
SPList lib2 = (SPDocumentLibrary) web.Lists["lib2"];
SPItem item1 = lib1.Items[0];
//insert code to move item1 to lib2

I'm currently looking at SPItem.MoveTo() but wonder if anyone already solved this problem and has some advice.
Thanks in advance.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Got it:

SPList lib1 = (SPDocumentLibrary) web.Lists["lib1"];
SPList lib2 = (SPDocumentLibrary) web.Lists["lib2"];
SPListItem item1 = lib1.Items[0];
byte[] fileBytes = item1.File.OpenBinary();
string destUrl = lib2.RootFolder.Url + "/" + item1.File.Name;
SPFile destFile = lib2.RootFolder.Files.Add(destUrl, fileBytes, true /*overwrite*/);
link|improve this answer
... and then I delete item1 to satisfy the "move to" rather than "copy to" requirement. – vitule Nov 19 '08 at 14:59
feedback

MoveTo() and CopyTo() both seem to work fine within Visual Studio 2008 sequential workflow. But neither do meta-data or version history. :-(

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.