Tagged Questions

3
votes
3answers
845 views

Perl directory change from Windows cmd.exe

According to the manual, chdir, Changes the working directory to EXPR, if possible. This script, when executed from cmd.exe: my $path = 'C:\\some\\path\\'; print "$path\n"; chdir("$path") or die ...
2
votes
3answers
314 views

What's that best way to move through directories?

Are both of the examples below OK, or is the second one bad style? Case 1: Stay in top directory and use catdir to access subdirectories #!/usr/bin/env perl use warnings; use strict; my $dir = ...
1
vote
3answers
69 views

Perl chdir error

I am trying to change the working directory (for configure a WebShpere MQ Queue manager) using Perl in UNIX. I have to go to the directory /var/mqm/qmgrs/Q\!MAN and I have used following code ...
1
vote
3answers
928 views

Why does my chdir to a filehandle not work in Perl?

When I try a "chdir" with a filehandle as argument, "chdir" returns 0 and a pwd returns still the same directory. Should that be so? I tried this, because in the documentation to chdir I found: ...