in reply to NT Server script

Well, File::Find has often not worked for me because of an irrational "optimization" (that actually makes many things slower). Try adding:

$File::Find::dont_use_nlink = 1;
right below the use File::Find line and see if that helps. If it does help, then upgrading File::Find on the NT server might also be a fix for the problem.

                - tye

Replies are listed 'Best First'.
Re: Re: NT Server script (nlink?)
by Anonymous Monk on Jun 25, 2003 at 19:37 UTC
    Thanks I will give that a try. File::Find has worked for me in the past on this server so I assumed it was okay.
      I just found out we had an old Perl version on the server! That was the problem. Sorry for not finding this out before I posted this question!