Is fuath liom a admháil go, but I struggled with this one all day. My event receiver needs to update a field of its parent folder. This little bit shows how to do it:
príobháideach neamhní UpdateParentFolder(SPItemEventProperties airíonna)
{
SPFolder thisItemFolder = properties.ListItem.File.ParentFolder;
thisItemFolder.Item["ZZ Approval Status"] = "Good news, gach duine!";
thisItemFolder.Item.Update();
} // UpdateParentFolder
Sa chás seo, Tá mé ag obair le leabharlann doiciméad agus na hairíonna atá ag teacht ó ócáid ItemAdded.
Is é an cleas nach féidir leat a fháil ar an SPFolder na míre díreach ó na míre féin (i.e. Is properties.ListItem.Folder null). Ina áit sin, téigh go dtí an mír liosta ar Comhad a bhaineann agus a fháil ar an fillteán Comhad ar.
</deireadh>