Windows: シンボリックリンク
#Windows
Windows
でも
シンボリックリンク
が作れるよ
権限
Windows
でシンボリックリンクを作るには、権限が必要
Git
for WindowsのWikiが一番わかりやすい
https://gitforwindows.org/symbolic-links.html
cmd
code:cmd
mklink <new link file> <source file>
ディレクトリの場合
code:cmd
mklink /D <new link dir> <source dir>
UNIX: ln
と真逆なので注意!
PowerShell
code:ps1
New-Item -ItemType SymbolicLink -Target <source dir> -Path <new link dir>