Cari di Perl 
    Perl User Manual
Daftar Isi
(Sebelumnya) A file test (-r, -x, etc)Changes the permissions on a l ... (Berikutnya)
Functions for filehandles, files, or directories

Change your current working directory

Daftar Isi

  • chdir EXPR

  • chdir FILEHANDLE
  • chdir DIRHANDLE
  • chdir

    Changes the working directory to EXPR, if possible. If EXPR is omitted,changes to the directory specified by $ENV{HOME}, if set; if not,changes to the directory specified by $ENV{LOGDIR}. (Under VMS, thevariable $ENV{SYS$LOGIN} is also checked, and used if it is set.) Ifneither is set, chdir does nothing. It returns true on success,false otherwise. See the example under die.

    On systems that support fchdir(2), you may pass a filehandle ordirectory handle as the argument. On systems that don't support fchdir(2),passing handles raises an exception.

 
Source : perldoc.perl.org - Official documentation for the Perl programming language
Site maintained by Jon Allen (JJ)     See the project page for more details
Documentation maintained by the Perl 5 Porters
(Sebelumnya) A file test (-r, -x, etc)Changes the permissions on a l ... (Berikutnya)