次のコードを使用して、ドキュメントライブラリ内にフォルダを作成しています。イベントはトリガーされ、コードの最後の行まで問題なく実行されます。ただし、フォルダが作成されていないか、ドキュメントライブラリに一覧表示されていません。
public override void ItemAdded(SPItemEventProperties properties)
{
base.ItemAdded(properties);
string strDashListRoot = "http://win-hmpjltdbh5q:37642";
using (SPSite site = new SPSite(strDashListRoot))
{
using (SPWeb web = site.OpenWeb())
{
web.AllowUnsafeUpdates = true;
SPList spl = web.Lists["client_documents"];
spl.Items.Add("", SPFileSystemObjectType.Folder, "Helllworld");
spl.Update();
web.AllowUnsafeUpdates = false;
}
}
}