>Hello - I am trying to use ActiveState perl on windows and I am trying
>to figure out how to chdir to a parent directory. I have tried the
>following:

 

>chdir ("..");

>chdir ("\\..");

chdir ('..');
chdir ('../');

Use single quotes. so that special characters are  treated as literals. "." and "\" 
are special characters. You escaped "\" but not "."  

>but no avail. Any ideas?

 

>tim

 


--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to