in reply to File::Find problem
my @directory = ("C:\Testing"); [download]
That is "C:Testing". If you'd written "C:\testing", then you'd have a tab in that file name. You should double your backslashes in Perl string literals.
- tye