Advertisement
Advertisement
| 10.08.2008 at 06:27PM PDT, ID: 23799667 | Points: 250 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: |
use File::Find;
find(\&wanted, '.');
sub wanted {
if(-d && /\d{7}/){
opendir(DIR,"$File::Find::dir/$_");
my @files = readdir(DIR);
closedir(DIR);
process_files(\@files,$upload_file_patterns{'patt'});
}
}
|