in reply to Re^2: Perl command to Create/Remove windows link
in thread Perl command to Create/Remove windows link

No.

You might be able to write one, if: a) you can write C; b) and learn XS; c) and learn the windows API.

But it'd be a huge amount of work to do something that is already possible via an OS supplied utility.

Why would you want to do that?


With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

The start of some sanity?

  • Comment on Re^3: Perl command to Create/Remove windows link

Replies are listed 'Best First'.
Re^4: Perl command to Create/Remove windows link
by bulk88 (Priest) on Aug 01, 2012 at 06:34 UTC
      Small amount of work, just 1 function call on NT 5,

      Just one function call eh? I'll believe it when I see it working.

      You might want to take a look in lnw.cpp

      Use a CPAN module Win32::HardLink as mentioned in the thread, no need to reinvent the wheel.

      Accept it doesn't work:

      C:\test>dir /b pete* File Not Found C:\test>mklink /h pete.exe \perl64\bin\perl.exe Hardlink created for pete.exe <<===>> \perl64\bin\perl.exe C:\test>pete -v This is perl, v5.10.1 built for MSWin32-x64-multi-thread [snip] C:\test>del pete.exe C:\test>perl -MWin32::Hardlink -E"say link( 'pete.exe', '\\perl64\\bin +\\perl.exe' )" CreateHardLink( "\perl64\bin\perl.exe", "pete.exe" ) failed with error + 2. 0 C:\test>pete -v 'pete' is not recognized as an internal or external command, operable program or batch file.

      Win32::Symlink works after a fashion, but looking at the code that underlies it, I wouldn't want to rely upon it.


      With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
      Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
      "Science is about questioning the status quo. Questioning authority".
      In the absence of evidence, opinion is indistinguishable from prejudice.

      The start of some sanity?