ln for windows

While working on a C# project, having to copy the built dlls to the working directory to test the application was doing my head in. Now if I was in linux I would just

ln /dir/sourcefile.file /otherdir/targetfile.file

But can I do something similar in windows?, I didn’t think so but with some digging I found the fsutil comand which I had never used before.

fsutil hardlink create /otherdir/targetfile.file /dir/sourcefile.file

Now when I build my project my working directory is also updated…

Command-line reference A-Z