このページは大阪弁化フィルタによって翻訳生成されたんですわ。

翻訳前ページへ


symlink - perldoc.perl.org
The Wayback Machine - http://web.archive.org/web/20171102161400/http://perldoc.perl.org:80/functions/symlink.html

Perl version

Modules

  • ABCDE
  • FGHIL
  • MNOPS
  • TUX

symlink

Perl 5 version 26.0 documentation
Recently read

symlink

  • 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.