Inside my ItemAdded function I want to check the last added item is a folde or not. How to check that.

有帮助吗?

解决方案

public class ClassName : SPItemEventReceiver
{
    public override void ItemAdded(SPItemEventProperties properties)
    {
        bool isFolder = (properties.ListItem.Folder != null);
    }
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top