-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathREADME
More file actions
21 lines (17 loc) · 690 Bytes
/
README
File metadata and controls
21 lines (17 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
This pure WinAPI/MSVCRT-based library implements equivalents of the following
functions:
symlink()
link()
unlink()
lstat()
readlink()
When compiled for Vista or later, it uses built-in CreateSymbolicLink() and
related API functions. When compiled for XP, it tries to implement symbolic
linking as best as it can with hardlinks (for files) and junction points (for
directories).
A small utility (junc.exe) is provided that is capable of creating/removing
links and reading link information.
Run make-mingw.cmd to compile.
Run make-mingw.cmd DEBUG=1 to build debug version.
Run make-mingw.cmd clean to remove compiled files.
Requires GCC and win32api MinGW packages.