Perl Programming/Keywords/chdir
The chdir keyword
editchdir changeds the working directory to the new destination in EXPRESSION. Without EXPRESSION, it changes to the directory defined in $ENV{HOME}, if set. If this is also not set, it changes to $ENV{LOGDIR}. (On VMS, $ENV{SYS$LOGIN} is also checked.)
chdir returns true on success and false otherwise.
If the operating system supports fchdir(2), a DIRHANDLE or FILEHANDLE can also be used. If this is not the case, an exception is raised.
Syntax
edit chdir DIRHANDLE
chdir EXPRESSION
chdir FILEHANDLE
chdir
Examples
editchdir \
chdir |
closedir |
mkdir |
opendir |
readdir |
rewinddir |
rmdir |
seekdir |
telldir
|