I know file system commands could be executed using the OS wrappers. But Smalltalk is more elegant than shell command line, and we have Windows still the most used OS. 2017-06-18 3:59 GMT-03:00 john pfersich <jpfersich@gmail.com>:
Why not just use OsProcess or OsSubprocess to run the unix commands (works on Mac OS and Linux)?
Sent from my iPhone
On Jun 17, 2017, at 19:59, Hernán Morales Durand < hernan.morales@gmail.com> wrote:
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