http://www.perlmonks.org?node_id=268885


in reply to Running perl on NT server

Icky Windows backslashes... *Smiles* You need to double blackslash each one.

You should be able to use either of these:

find( \&mySubroutine, 'F:\\inetpub\\wwwroot'); find( \&mySubroutine, 'F:/inetpub/wwwroot');

Replies are listed 'Best First'.
Re: Re: Running perl on NT server
by Anonymous Monk on Jun 25, 2003 at 16:12 UTC
    Thanks