I am using File::Find::Rule
on Strawberry Perl Windows.
when I run the following code:
@files = File::Find::Rule->file()
->in( $dir );
foreach my $file (@files){
say $file;
}
I get the list of files in this format:
C:\data\mydata\file/1.xls
and not this format:
C:\data\mydata\file\1.xls
What could be the problem?