Help for this page

Select Code to Download


  1. or download this
        use Cwd;
        $dir1 = cwd();
        $dir2 = getcwd();  # C version of cwd()
        $dir3 = fastcwd(); # less stable , faster C version
    
  2. or download this
        my $dir = '/tmp';
        chdir($dir) || die "Failed to cd : $!\n";