README 987 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. File/Copy/Recursive version 0.38
  2. ================================
  3. This module has 3 functions, one to copy files only, one to copy directories
  4. only and one to do either depending on the argument's type.
  5. The depth to which a directory structure is copied can be set with:
  6. $File::Copy::Recursive::Maxdepth
  7. setting it back to false or non numeric value will turn it back to unlimited.
  8. All functions attempt to preserve each copied file's mode unless you set
  9. $File::Copy::Recursive::KeepMode
  10. to false.
  11. See
  12. perldoc File::Copy::Recursive
  13. for more info
  14. INSTALLATION
  15. To install this module type the following:
  16. perl Makefile.PL
  17. make
  18. make test
  19. make install
  20. or
  21. perl -MCPAN -e 'install File::Copy::Recursive;'
  22. DEPENDENCIES
  23. This module requires these other modules and libraries:
  24. File::Copy
  25. File::Spec
  26. COPYRIGHT AND LICENCE
  27. Copyright (C) 2004 Daniel Muey
  28. This library is free software; you can redistribute it and/or modify
  29. it under the same terms as Perl itself.