Как программно создать мягкую ссылку в C/C++? Системный вызов link() в freebsd создаст жесткую ссылку.
Как программно создать мягкую ссылку в C/C++?
Ответ 1
Системный вызов, который вы хотите, symlink (2).
#include <unistd.h>
int symlink(const char *name1, const char *name2);
Символическая ссылка
name2
создана дляname1
Ответ 2
Вы можете позвонить symlink()
int symlink(const char *name1, const char *name2);
A symbolic link name2 is created to name1 (name2 is the name of the file
created, name1 is the string used in creating the symbolic link). Either
name may be an arbitrary path name; the files need not be on the same
file system.