The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Cwd::Guard - Temporary changing working directory (chdir)

SYNOPSIS

use Cwd::Guard qw/cwd_guard/;
use Cwd;

my $dir = getcwd;
MYBLOCK: {
    my $guard = cwd_guard('/tmp/xxxxx') or die "failed chdir: $Cwd::Guard::Error";
    # chdir to /tmp/xxxxx
}
# back to $dir

DESCRIPTION

CORE::chdir Cwd:: Guard can change the current directory (chdir) using a limited scope.

FUNCTIONS

AUTHOR

Masahiro Nagano

SEE ALSO

File::chdir, File::pushd

LICENSE

Copyright (C) Masahiro Nagano

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.