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

Here you go

cpan -i -T Win32::Unicode

  • Comment on Re^3: Copy Unicode Directory Recursively

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

    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.

Re^4: Copy Unicode Directory Recursively
by Anonymous Monk on Feb 12, 2018 at 17:28 UTC

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