views:

235

answers:

2

I have a requirement to programmatically add a file along with metadata to a document library and in an event handler. I am using the following code in the asynchronous “ItemAdded” and “ItemUpdated” events:

SPFile destFile = web.Files.Add(newUrl, newFile, true);

SPListItem destItem;
if (destFile.Item != null)
{
 destItem = destFile.Item;
}
else
{
 destItem = list.Items.Add(folderUrl, SPFileSystemObjectType.File);
}

foreach (DictionaryEntry property in properties)
{
 destItem.Properties[property.Key.ToString()] = property.Value;
}

destItem.Update();

However, each time a file is added, two versions are created, one when the Files.Add method is called and one when the SPListItem.Update method is called. Is there another way to do this where only one version will be created?

Thanks in advance!

+4  A: 

Use

destItem.SystemUpdate( false );

in stead of .Update() to avoid creating a new version.

Paul-Jan
A: 

The Add() method has an override which accepts a hashtable to pass metadata along with the file. This way there is no need to call Update() or SystemUpdate() methods.

Leonidius