View Problem

Process each file in a directory

DiskEdit
perl
use File::Glob;

for (<*>) {
process_file($_) if (-f);
}

Submit a new solution for perl
There are 16 other solutions in additional languages (clojure, cpp, csharp, erlang ...)