From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

NAME

DynGig::Util::Symlink - manipulate symbolic links

SYNOPSIS

my $link = DynGig::Util::Symlink->new
(
link => 'foo.bar',
root => '/foo/bar', ## optional
path => 'foo.real', ## optional
user => 'web:web', ## optional
)
my $check = $link->check();
my $path1 = $link->make();
my $path2 = $link->make( rollback => 1 );

NOTE

See DynGig::Util