in reply to [Win] Compare files between two directories (and subdir)

system("diff -q \"$File::Find::name\" \"$other_file\" > NU +L"); if($?) { print "$file is different\n"; }
could be simplified to
if(qx/diff -q "$File::Find::name" "$other_file"/) { print "$file is different\n"; }
Update: Added quotes around file name variables to handle file names with spaces in them (thanks ikegami).