标签:style class blog c code java
RT,方法如下:
1 SPListItemCollection GetSubItemsWithoutFoldersInParrentFolder(SPFolder parrent) 2 { 3 SPList list = parrent.Item.ParentList; 4 SPQuery query = new SPQuery(); 5 query.Folder = parrent; 6 query.Query = "<Where><Eq><FieldRef Name=‘FSObjType‘/><Value Type=‘Lookup‘>0</Value></Eq></Where>"; 7 SPListItemCollection items = list.GetItems(query); 8 return items; 9 }
获取列表中某一个文件夹下的列表项集合(不包含子文件夹对象,也不包含子文件夹中的列表项),布布扣,bubuko.com
获取列表中某一个文件夹下的列表项集合(不包含子文件夹对象,也不包含子文件夹中的列表项)
标签:style class blog c code java
原文地址:http://www.cnblogs.com/howeverlee/p/3748234.html