SkullOne has asked for the wisdom of the Perl Monks concerning the following question:
for my $file (<*.txt>) { $count = $count + 1; my ($name,$path,$suffix) = fileparse($file,"\.txt") ; my $info = stat($file); my $datestamp = strftime(".%Y%m%d", localtime($info->mtime)); my $datestamp2 = strftime("%Y%m%d", localtime($info->mtime)); #print "\nMaking Directory if it doesnt exist: $dst2\\$datestamp2" +; mkdir "$dst2\\$datestamp2" or "Error making Directory\n"; print "\n Moving \"$file\" to >> $dst2\\$datestamp2\n"; move $file,"$dst2\\$datestamp2\\$name$suffix" or warn "Cannot copy + $file $!\n" ; if($count > $limit) {exit;} }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl file operations
by kyle (Abbot) on Feb 23, 2008 at 03:22 UTC | |
|
Re: Perl file operations
by jwkrahn (Abbot) on Feb 23, 2008 at 03:23 UTC | |
by chromatic (Archbishop) on Feb 23, 2008 at 04:42 UTC | |
by SkullOne (Acolyte) on Feb 23, 2008 at 05:54 UTC | |
by zshzn (Hermit) on Feb 23, 2008 at 21:41 UTC |