in reply to Re: File::Random module (bug)
in thread File::Random module
Can you show the bug? I'm a bit surprised as the module runs well in a little test case I made on Windows. The only thing which wonders me is, that File::Find's path seperator seems to be '/' in any case. Have a look at while running under Windows:
#!/usr/bin/perl use strict; use warnings; use File::Find; find(\&wanted, 'C:\\Temp\\something'); sub wanted { print "$_\n"; print "$File::Find::name\n"; }
@gautamparimoo: I can adress a drive 'Z:\' here on my installation. Silly question, but are you sure you have a 'E:\'? Show us the whole script and we can probably see where the problem is.
McA
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: File::Random module (bug)
by gautamparimoo (Beadle) on Apr 02, 2013 at 08:52 UTC | |
Re^3: File::Random module (McA)
by Anonymous Monk on Apr 02, 2013 at 07:58 UTC | |
by McA (Priest) on Apr 02, 2013 at 09:01 UTC | |
by Anonymous Monk on Apr 02, 2013 at 09:52 UTC | |
by gautamparimoo (Beadle) on Apr 02, 2013 at 08:54 UTC | |
by tobyink (Canon) on Apr 02, 2013 at 09:32 UTC | |
by McA (Priest) on Apr 02, 2013 at 09:42 UTC | |
by gautamparimoo (Beadle) on Apr 02, 2013 at 09:50 UTC | |
| |
by McA (Priest) on Apr 02, 2013 at 09:18 UTC |