View Problem

Process each file in a directory

DiskEdit
perl
use File::Glob;

for (<*>) {
process_file($_) if (-f);
}
ExpandDiskEdit
java
for (File file : (new File("c:\\")).listFiles()) process(file);

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