Jim has asked for the wisdom of the Perl Monks concerning the following question:
I have to write a Perl script to create hard links to many files on a Windows NTFS file system and I don't want to use the internal link function if it only works for me by accident somehow.C:\Temp>dir /a:-d /b File Not Found C:\Temp>perl -e "link 'C:\Perl\lib\ActivePerl.pm', 'HardLinkToActivePe +rl.pm'" C:\Temp>dir /a:-d /b HardLinkToActivePerl.pm C:\Temp>head -7 HardLinkToActivePerl.pm package ActivePerl; sub perl_version { return sprintf("%vd.%s", $^V, BUILD()); } 1; C:\Temp>
My question is simply this: Is the documentation just plain wrong? Is link fully implemented in ActivePerl 5.8 for Windows despite what the ActivePerl-faq5 - Implementation Quirks document says?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: ActivePerl 5.8 Documentation Discrepancy: "Unimplemented" link Function
by ysth (Canon) on May 26, 2008 at 01:17 UTC | |
by Jim (Curate) on May 26, 2008 at 05:08 UTC | |
|
Re: ActivePerl 5.8 Documentation Discrepancy: "Unimplemented" link Function
by syphilis (Archbishop) on May 26, 2008 at 00:31 UTC |