• home
  • about
  • 全ての投稿
  • ソフトウェア・ハードウェアの設定のまとめ
  • 分析関連のまとめ
  • ヘルスケア関連のまとめ
  • 生涯学習関連のまとめ

windows link

date: 2022-09-25 excerpt: windows link(シンボリックリンク、ハードリンク)

tag: windowsmicrosoftlink


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"


windowsmicrosoftlink Share Tweet