- 论坛徽章:
- 0
|
前两天刚好写了一个, 呵呵:
-------------------------------
#deltree.pl
- #!/usr/bin/perl -w
- use strict;
- #Used to remove a directory which is not empty.
- #check if the input is legal.
- if(@ARGV < 1) {
- print "You have to specified one directory at least!\n";
- print "Usage: perl rmpath path";
- exit;
- } elsif(!(-d $ARGV[0])) {
- print "The directory you input does not exist!";
- exit;
- }
- #Get the directory you want to delete.
- my $path = $ARGV[0];
- #remove it!
- &rm($path);
- #the process function.
- sub rm{
- my $path = $_[0];
- chdir $path;
- #get all the files in that directory.
- @_=<*>;
- for(@_){
- if(-d $_){
- #if the destination file is a directory, go recursion.
- rm($_);
- }else{
- unlink;
- }
- }
- #Go up and del the destination directory.
- chdir "../";
- rmdir $path;
- }
复制代码 |
|