Hi all,
How do I copy a symbolic link (and not the file it points to) in a Perl program while preserving all of the symbolic link attributes (such as owner and permissions)?
Thanks, splintor
|
|
Hi all, How do I copy a symbolic link (and not the file it points to) in a Perl program while preserving all of the symbolic link attributes (such as owner and permissions)? Thanks, splintor
|
|||
|
|
|
|
In Perl you can use the You can also use the Actually setting the ownership on the new symlink can't be done without extra help as Perl doesn't expose the Assuming sufficient permissions (nb: unchecked code)
You don't need to worry about the permissions on the symlink - they always appear as |
||||
|
|
|
The module File::Copy::Recursive takes care of that. By default it will copy symlinks and try to preserve ownership. |
||
|