Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Path-Class CPAN distribution.

Maintainer(s)' notes

I prefer that bugs & patches are filed on GitHub rather than on RT: https://github.com/kenahoo/Path-Class/issues. Thanks.

Report information
The Basics
Id: 84701
Status: new
Priority: 0/
Queue: Path-Class

People
Owner: Nobody in particular
Requestors: charles.minc [...] wanadoo.fr
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: starting separator missing
the following statement in windows XP perl (5.12.3) : my $monpath=dir("D:",'perl') # give D:\perl that is correct. but in windows 7, perl 64 bits (v5.14.2) we have got D:perl for the same above. If we try : say dir('D: ','perl') ;# this one give 'D: \perl' with a whitespace say dir('D:',' perl') ;# this other one 'D: perl' say dir('','perl') ; # \perl but say dir ('D:','','perl') ; # give D:perl In short, the first separator is missing or there is whitespace signifant for windows system so the path generated could not be accessed.