• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/File/Copy/H23-Jul-2019-809423

t/H23-Jul-2019-678517

ChangesH A D23-Jul-20197.7 KiB189143

MANIFESTH A D23-Jul-2019305 1514

META.jsonH A D23-Jul-20191.6 KiB6665

META.ymlH A D23-Jul-2019881 3635

Makefile.PLH A D23-Jul-20191.2 KiB4139

READMEH A D21-Apr-2018987 4629

README.mdH A D25-Jan-2016624 137

README

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

README.md

1# File::Copy::Recursive round 2
2
3
4I have gotten much love from this module but it has suffered from neglect. Partly because I am busy and partly that the code is crusty (it was done back when package globals were all the rage–those of you with CGI tatoos know what I am talking about ;)).
5
6So I am finally making a plan to give this the attention it deserves.
7
8## Goals
9
101. Fix the [RTs](https://rt.cpan.org/Dist/Display.html?Queue=File-Copy-Recursive) and write tests (Issue #3) (pull requests welcome!)
112. Modernize the code and interface–Issue #2
123. Do not break existing consumers of the legacy interface–Issue #1
13