Idea Suggestion for a mod loading utility

orb, it's for sym-links. would it work for hard links too?
The linked earlier example was for symbolic links, so I thought you want a symbolic link.

For hard links there's CreateHardLink function.

Importing it to VB.NET:
Code:
<DllImport("kernel32.dll", SetLastError:=True, CharSet:=CharSet.Auto)> _
Private Shared Function CreateHardLink(ByVal lpFileName As String, ByVal lpExistingFileName As String, ByVal lpSecurityAttributes As IntPtr) As Boolean
End Function
Source
 
Back
Top