Home  > Language reference > Functions > symlink
Perl 5 version 32.0 documentation

symlink

Perl functions A-Z | Perl functions by category | The 'perlfunc' manpage
  • symlink OLDFILE,NEWFILE

    Creates a new filename symbolically linked to the old filename. Returns 1 for success, 0 otherwise. On systems that don't support symbolic links, raises an exception. To check for that, use eval:

    1. my $symlink_exists = eval { symlink("",""); 1 };

    Portability issues: symlink in perlport.

  • Site info

  • Docs mantained by Perl 5 Porters
  • Perldoc site development sponsored by OpusVL Logo
  • About PerlDOC
  • Manuals

  • Overview
  • Tutorials
  • FAQs
  • Changes
  • Reference

  • Language
  • Functions
  • Operators
  • Variables
  • Modules

  • Modules
  • Pragmas
  • Utilities
  • Misc

  • License
  • Internals
  • Platforms
  • About
perldoc.perl.org - Official documentation for the Perl programming language
This website is a Beta release. For any issues please raise a ticket on GitHub