childfilecount: !child:<!*.jpg>
child:<!*.jpg> = match any children that are not jpgs.
! = NOT
childfilecount: is needed as
!child:<!.jpg>
Please try a negative look ahead regex search:
childfilecount: !regex:child:^(?!.*\.jpg$)
Statistics: Posted by void — Thu Aug 08, 2024 2:35 am