windows link(シンボリックリンク、ハードリンク)
概要
- powershellになってから記法が変化
- リンクを作成したいパスと実態のパスを入れ替え可能に(linuxの表現に合わせやすい)
- 絶対パスで記したほうが間違いが少ない
シンボリックリンク
> New-Item -ItemType SymbolicLink -Target "TargetPath" -Path "CreatePath"
- “TargetPath”; 実態があるファイル・ディレクトリ
- “CreatePath”; シンボリックリンクを作成したい先
具体例
> touch sample.txt
> New-Item -ItemType SymbolicLink -Target "$PWD/sample.txt" -Path "$PWD/this-is-a-symboliclink.txt"