I'm trying to write a perl script that reads filenames in a test.txt file into an array, and then deletes the files based on the filenames in the array. Here's what I've got so far...

#!/usr/bin/perl
use strict;
use warnings;

open(FILE, "test.txt") or die("Unable to open file.");

my @data = <FILE>;

close(FILE);

foreach my $line (@data){
        unlink($line);
}

test.txt and remove_files.pl are in the same directory as the files to be removed. I can't figure out why the script won't delete the files. Am I missing a module?

link|improve this question
2  
The first hint would be to check the error: unlink($line) or warn "$0: could not unlink $line: $!\n" – tripleee Feb 13 at 19:25
feedback

1 Answer

up vote 9 down vote accepted

Lines read from a file with the readline operator (<...>) will include the newline character. You'll need to remove it, or else you will be trying to delete a file called "myfile.txt\n" instead of "myfile.txt". Use Perl's chomp function to trim your input:

foreach $line (@data){
    chomp($line);
    unlink($line);
}
link|improve this answer
Worked like a charm. Thanks! – cwscribner Feb 13 at 18:09
5  
You can also do chomp @data; unlink @data;, as both commands take lists as arguments. I.e. no need for a loop. – TLP Feb 13 at 18:23
@TLP, Then it's harder to check for errors. – ikegami Feb 14 at 5:51
@cwscribner, please accept (check the mark under the node's score) the answer if you're satisfied with it. – ikegami Feb 14 at 5:52
1  
@ikegami It will be as easy as before to check for errors, but in case of an error, you wont be able to tell which file couldn't be deleted. – TLP Feb 14 at 13:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.