NAME
Meta::Utils::File::Remove - package that eases removal of files and directories.
COPYRIGHT
Copyright (C) 2001, 2002 Mark Veltzer; All rights reserved.
LICENSE
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
DETAILS
MANIFEST: Remove.pm
PROJECT: meta
VERSION: 0.26
SYNOPSIS
package foo;
use Meta::Utils::File::Remove qw();
Meta::Utils::File::Remove::rm($filename);
Meta::Utils::File::Remove::rmdir($dirname);
DESCRIPTION
This module eases the use of rm. Instead of checking for errors all of the time just let this module remove a file or directory for you (it has all the options including a recursive one...). If something happens wrong it dies on you but hey - thats the price you got to pay...
FUNCTIONS
rm_nodie($)
rm($)
rm_demo_verb($$$)
rm_rmdir($)
rmdir($)
rmdir_demo_verb($$$$)
rmall()
rmrecusrive($)
rmhash_demo_verb($$$)
rmlist_demo_verb($$$)
rmmult_demo_verb($$)
FUNCTION DOCUMENTATION
- rm_nodie($)
-
This function removes a single file and does not do anything if it does not exist. This function returns whether it managed to do it or not...
- rm($)
-
This function removes a single file and dies if it cannot do so. It does not return a value.
- rm_demo_verb($$$)
-
This function removes a file only if the demo is false and also emits a message if the verbose flag is true
- rm_rmdir($)
-
This function removes a file and then removes the directory in which it is located if it remains empty. Actually this function should continues going higher....:) up the directory tree.
- rmdir($)
-
This function removes a directory and dies if it cannot do so. This function does not return a value.
- rmdir_demo_verb($$$$)
-
This function removes a directory only if the demo flag is false. The function also emits a message about the directories being removed if the verbose flag is true.
- rmall()
-
This function assumes that you dont know if what you're looking to remove is a file or a directory and removes whichever this is... It dies if it cannot perform.
- rmrecusive($)
-
This function removes a directory in a recursive fashion. It uses the File::Find function to achieve this (unlinking dirs is not good...:) It also uses the rmall function to achieve this (nice trick...).
- rmhash_demo_verb($$$)
-
This routine removes a whole hash. As expected, demo and verbose arguments are also allowed.
- rmlist_demo_verb($$$)
-
This routine removes a whole list. As expected, demo and verbose arguments are also allowed.
- rmmult_demo_verb($$)
-
This function receives the regular demo and verbose variables and treats the standard input as a source for lines, each representing a file to be removed. The function removes all the files refered as such. The function returns whether all the removals were successful or not.
BUGS
None
AUTHOR
Name: Mark Veltzer
Email: mark2776@yahoo.com
WWW: http://www.geocities.com/mark2776
CPAN id: VELTZER
HISTORY
0.00 MV initial code brought in
0.01 MV make quality checks on perl code
0.02 MV more perl checks
0.03 MV make Meta::Utils::Opts object oriented
0.04 MV check that all uses have qw
0.05 MV fix todo items look in pod documentation
0.06 MV more on tests/more checks to perl
0.07 MV make lilypond work
0.08 MV correct die usage
0.09 MV lilypond stuff
0.10 MV perl code quality
0.11 MV more perl quality
0.12 MV more perl quality
0.13 MV perl documentation
0.14 MV more perl quality
0.15 MV perl qulity code
0.16 MV more perl code quality
0.17 MV revision change
0.18 MV languages.pl test online
0.19 MV perl packaging
0.20 MV fix database problems
0.21 MV md5 project
0.22 MV database
0.23 MV perl module versions in files
0.24 MV movies and small fixes
0.25 MV thumbnail user interface
0.26 MV more thumbnail issues
SEE ALSO
Nothing.
TODO
-rm_rmdir should climb higher and keep removing dirs (its not doing that right now...).
-add a die parameter to the rm($) function and propagate it up.
-add an option to the rmmult_demo_verb function to remove files from any file source (not just stdin...).
-stop the demo verb propagation and start using a parameter module.