Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私の ItemAdded 関数内で、最後に追加されたアイテムがフォルダーかどうかを確認したいと思います。それを確認する方法。
public class ClassName : SPItemEventReceiver { public override void ItemAdded(SPItemEventProperties properties) { bool isFolder = (properties.ListItem.Folder != null); } }