I would like to find files in Pharo like the UNIX find command: find . -iname "*.txt" -type f -print
find . \( -iname "*.txt" -o -iname "*.csv" \) -print find . -maxdepth 2 -name "example*" -type f -print find . -type f -atime -7 -size +2M -perm 644 -print Do we have some package on top of FileSystem to make complex find searches? Hernán