http://qs1969.pair.com?node_id=173928


in reply to Re: .bat and perl mystery
in thread .bat and perl mystery

OK, I think this might have something to do with it. It can't see the .bat file, but I'm able to execute it from the command line in the same directory as my perl script.

Replies are listed 'Best First'.
Re: Re: Re: .bat and perl mystery
by insensate (Hermit) on Jun 12, 2002 at 17:09 UTC
    Ah...perhaps the .bat file is in a directory in your %PATH% env variable...try hardcoding the entire paths in your script...remember to escape the \ characters for win32 paths...so "c:\mydir\myfile" would be "c:\\mydir\\myfile"
    -Jason