in reply to SOLVED: Subroutine to Search Subdirectories Failing at Filehandle Test
and everything gets moved in bin mode to another single folder.folder1 |-nature | |-animals | |-sky | | |-night | | |-day | | |-silouttes | |-flowers |-cars
#!usr/bin/perl use strict; use File::Find; use File::Copy; my @location=("C:/folder1","C:/folder2"); my $new_location="C:/moved_files"; foreach my $location(@location){ print "\n$location\n"; find(\&force_move,$location); } sub force_move(){ my $file=$_; print "\n $file"; my $out = "$new_location/$file"; if (-d "$file"){ } else { if ($file ne "."){ open (OUTBIN, '>',"$out") || die "unable to open $out"; binmode(OUTBIN) || die "unable to set binmode $out"; print "\n$out\n"; } } } print "I am done!!!!"; sleep(2);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Subroutine to Search Subdirectories Failing at Filehandle Test
by BJ_Covert_Action (Beadle) on Apr 06, 2009 at 19:25 UTC |