in reply to Re^2: Skipping directories using File::Find
in thread Skipping directories using File::Find
find(\&edits, $dir); sub edits { if ($should_prune) { $File::Find::prune = 1 return; } push @$cont, $File::Find::name, stat($File::Find::name) if (!($File::Find::name =~ /.snapshot/)); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Skipping directories using File::Find
by doof (Initiate) on Jan 25, 2006 at 11:27 UTC | |
by GrandFather (Saint) on Jan 25, 2006 at 11:35 UTC | |
by doof (Initiate) on Jan 25, 2006 at 12:13 UTC | |
by GrandFather (Saint) on Jan 25, 2006 at 12:17 UTC |