Win32::Symlink - Symlink support on Windows |
Win32::Symlink - Symlink support on Windows
This document describes version 0.06 of Win32::Symlink, released April 13, 2015.
use Win32::Symlink;
# Assuming D: is a NTFS volume... mkdir 'D:\from'; symlink( 'D:\from' => 'D:\to' ); print readlink( 'D:\to' ); # 'D:\from' rmdir 'D:\from', 'D\to';
This module implements the built-in symlink
and readlink
functions for
Microsoft Windows. Currently, it only works on NTFS filesystems.
Audrey Tang <cpan@audreyt.org>
To the extent possible under law, 唐鳳 has waived all copyright and related or neighboring rights to Win32-Symlink.
This work is published from Taiwan.
http://creativecommons.org/publicdomain/zero/1.0
Win32::Symlink - Symlink support on Windows |