in reply to How do you exclude certain folder or directories from a search

you could try something like
sub modified_file{ if((-f "$File::Find::name") and ($File::Find::name ne "winnt")){ # do something } }
This is so untested, but you get the picture
  • Comment on Re: How do you exclude certain folder or directories from a search
  • Download Code

Replies are listed 'Best First'.
Re: Re: How do you exclude certain folder or directories from a search
by Anonymous Monk on Sep 04, 2002 at 02:53 UTC
    blaze, thanks for responding --kirk
      Thanks grinder easy!