Symlink On Windows ^new^ Link
fsutil reparsepoint query "C:\Path\link"
rmdir "C:\Path\To\Link"
New-Item -ItemType SymbolicLink -Path myproject -Target C:\Users\username\Documents\myproject symlink on windows
| Action | Command | |--------|---------| | File symlink | mklink "link" "target" | | Directory symlink | mklink /D "link" "target" | | Junction | mklink /J "link" "target" | | List symlinks | dir /AL | | Delete file link | del "link" | | Delete folder link | rmdir "link" | | Run as admin | Win + R → cmd → Ctrl+Shift+Enter | symlink on windows
dir /AL
Create a symlink inside your Dropbox folder that points to the folder on your Desktop. The cloud service sees the files inside the link and syncs them perfectly, while you keep working on your Desktop. symlink on windows