我想使用 PowerShell Community Extensions PSCX commandlet New-Hardlink http://pscx.codeplex.com/创建一个新的硬链接。我已经阅读了 man 文件并尝试了几乎所有命令组合,但它不起作用。我错过了什么?(我知道 fsutil,但我想使用这个命令行开关/别名)
这是目录结构: E:\Source E:\Test
以下是我尝试过的命令的一些变体:
New-Hardlink E:\Test\Source E:\Source
New-Hardlink -Path:"E:\Test\Source" -Target:"E:\Source"
New-Hardlink E:\Source E:\Test\Source
New-Hardlink E:\Source E:\Test\
New-Hardlink -P:"E:\Source" -T:"E:\Test\Source"
这是假定的语法:
New-Hardlink [-Path] <String> [-Target] <String> [<CommonParameters>]
-Path <String>
Path to the new link.
-Target <String>
Target of the link.
结果总是来自:
New-Hardlink : Unable to find the file 'E:\Source.
此命令是否不适用于目录而仅适用于文件?