File::Path::Stderr - like File::Path but print to STDERR


NAME

File::Path::Stderr - like File::Path but print to STDERR


SYNOPSIS

   use File::Path::Stderr;
   mkpath(['/foo/bar/baz', 'blurfl/quux'], 1, 0711);
   rmtree(['foo/bar/baz', 'blurfl/quux'], 1, 1);


DESCRIPTION

This is a very, very simple wrapper around the File::Path manpage. All exported functions function exactly the same as they do in File::Spec except rather than printing activity reports to the currently selected filehandle (which is normally STDOUT) the messages about what File::Path is doing are printed to STDERR.


AUTHOR

Written by Mark Fowler <mark@twoshortplanks.com>

Copryright Mark Fowler 2003. All Rights Reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.


BUGS

None known.

Bugs should be reported to me via the CPAN RT system. http://rt.cpan.org/NoAuth/ReportBug.html.


SEE ALSO

the File::Path manpage

 File::Path::Stderr - like File::Path but print to STDERR