colox has asked for the wisdom of the Perl Monks concerning the following question:
Dear Monks, I have a routine to recursively search for files in a directory & move the file to another folder if it satisfies a condition. Since I need to do recursive search, I thought of using File::Find::name. It works in getting all the list of files & in moving the files to the other folder. However, my problem now is that the subfolders from the source directory stays (& empty) & are not getting deleted. Is there a way to auto-delete those using the same module? If not, any suggestion how to do it in a "nice way"?
sub Get_Allist{ @files=(); my $inputdir = $InP; find(sub {push @files,$File::Find::name if (-f $File::Find::name a +nd /\.*$/); }, $inputdir); } sub Move_Files{ foreach $srcfile (@files){ #Process each file in input folder move("$srcfile", "$OutP\\."); } }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: File::Find help
by Corion (Patriarch) on Dec 02, 2017 at 09:48 UTC | |
by colox (Sexton) on Dec 02, 2017 at 09:53 UTC | |
by Corion (Patriarch) on Dec 02, 2017 at 10:07 UTC | |
by colox (Sexton) on Dec 02, 2017 at 13:19 UTC | |
by marto (Cardinal) on Dec 02, 2017 at 13:29 UTC | |
| |
Re: File::Find help
by 1nickt (Canon) on Dec 02, 2017 at 14:11 UTC | |
by colox (Sexton) on Dec 02, 2017 at 15:19 UTC | |
by 1nickt (Canon) on Dec 02, 2017 at 15:38 UTC | |
Re: File::Find help
by tybalt89 (Monsignor) on Dec 02, 2017 at 15:02 UTC | |
Re: File::Find help
by Anonymous Monk on Dec 02, 2017 at 10:03 UTC | |
Re: File::Find help
by Anonymous Monk on Dec 02, 2017 at 15:16 UTC |