SYMLINK(2) | System Calls Manual | SYMLINK(2) |
symlink
, symlinkat
— make symbolic link to a file
#include
<unistd.h>
int
symlink
(const
char *name1, const char
*name2);
#include <fcntl.h>
#include <unistd.h>
int
symlinkat
(const
char *name1, int
fd, 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, and the file specified by name1 need not exist at all.
The
symlinkat
()
function is equivalent to
symlink
()
except that where name2 specifies a relative path, the
newly created symbolic link is created relative to the directory associated
with file descriptor fd instead of the current working
directory.
If
symlinkat
()
is passed the special value AT_FDCWD
(defined in
<fcntl.h>
) in the
fd parameter, the current working directory is used
and the behavior is identical to a call to
symlink
().
Upon successful completion, the value 0 is returned; otherwise the value -1 is returned and the global variable errno is set to indicate the error.
The symbolic link succeeds unless:
ENOTDIR
]ENAMETOOLONG
]NAME_MAX
characters, or an entire pathname (including the terminating NUL) exceeded
PATH_MAX
bytes.ENOENT
]EACCES
]ELOOP
]EEXIST
]EIO
]EROFS
]ENOSPC
]ENOSPC
]ENOSPC
]EDQUOT
]EDQUOT
]EDQUOT
]EIO
]EFAULT
]Additionally, symlinkat
() will fail
if:
EBADF
]AT_FDCWD
nor a valid file descriptor.ENOTDIR
]EACCES
]The symlink
() and
symlinkat
() functions conform to
IEEE Std 1003.1-2008 (“POSIX.1”).
The symlink
() system call first appeared
in 4.1cBSD. The symlinkat
()
system call has been available since OpenBSD
5.0.
September 10, 2015 | OpenBSD-6.1 |