in reply to Re^2: File::Temp painfully slow under Cygwin
in thread File::Temp painfully slow under Cygwin

Does not seem to exist either.

Laurent@Laurent-HP ~ $ find /usr/lib/perl5/ -name Cwd.dll Laurent@Laurent-HP ~

Replies are listed 'Best First'.
Re^4: File::Temp painfully slow under Cygwin
by Anonymous Monk on Jul 10, 2013 at 23:52 UTC

    Does not seem to exist either.

    Check this way

    $ perl -MCwd -le " print for grep /Cwd/, %:: " Cwd:: *main::Cwd:: _<C:/citrusperl/lib/auto/Cwd/Cwd.dll *main::_<C:/citrusperl/lib/auto/Cwd/Cwd.dll _<Cwd.c *main::_<Cwd.c

      I get only this:

      $ perl -MCwd -le " print for grep /Cwd/, %:: " Cwd:: *main::Cwd::
        In that case try

        use Data::Dump qw/ dd pp /;
        use File::Find::Rule;
        my @files = find( file => name => qr/Cwd/, in => \@INC );
        dd \@files;