in reply to Re: Copy Unicode Directory Recursively
in thread Copy Unicode Directory Recursively

It just fail to install. There is another post on Perlmonks (last week) with somebody having the same problem... and some discussion about it.

  • Comment on Re^2: Copy Unicode Directory Recursively

Replies are listed 'Best First'.
Re^3: Copy Unicode Directory Recursively
by Anonymous Monk on Feb 12, 2018 at 13:43 UTC
    Here you go

    cpan -i -T Win32::Unicode

      I could install a pre compiled ActiveState distribution of the module (on ActivePerl) just for the sake of testing (I normally work on Strawberryperl): However this simple operation fails

      use Win32::Unicode; use Win32::Unicode::Dir; use Win32::Unicode::Error; my $from="FROM"; my $to="TO"; cptreeW $from, $to or die $!;

      No matter if the directory "TO" already exists or not: Undefined subroutine &Errno::ERROR_FILE_EXISTS called at C:/Perl/site/lib/Win32/Unicode/Error.pm line 31.

      With this suggestion I've been able to compile it on Strawberry 5.22 . Thank you.