in reply to Re: Re: Test to see if directories are the same
in thread Test to see if directories are the same

Inode numbers are not reported on Windows so the above is OS-specific, as is this version:
sub all_same_file { my @desc = map {my @s = stat; "@s[0,1]"} @_; @_ == grep {$desc[0] eq $_} @desc; }