in reply to Copy Unicode Directory Recursively

Why cant you install win32::unicode?

Replies are listed 'Best First'.
Re^2: Copy Unicode Directory Recursively
by Anonymous Monk on Feb 12, 2018 at 12:17 UTC

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

      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.