www.LinuxHowtos.org
ARCHIVE_ENTRY_MISC
Section: C Library Functions (3)Index Return to Main Contents
BSD mandoc
NAME
archive_entry_symlink_type archive_entry_set_symlink_type - miscellaneous functions for manipulating properties of archive_entryLIBRARY
Streaming Archive Library (libarchive,-larchive)SYNOPSIS
In archive_entry.h Ft int Fn archive_entry_symlink_type struct archive_entry *a Ft void Fn archive_entry_set_symlink_type struct archive_entry *a intDESCRIPTION
The function Fn archive_entry_symlink_type returns and the function Fn archive_entry_set_symlink_type sets the type of the symbolic link stored in an archive entry. These functions have special meaning on operating systems that support multiple symbolic link types (e.g. Microsoft Windows).Supported values are:
- AE_SYMLINK_TYPE_UNDEFINED
- Symbolic link target type is not defined (default on unix systems)
- AE_SYMLINK_TYPE_FILE
- Symbolic link points to a file
- AE_SYMLINK_TYPE_DIRECTORY
- Symbolic link points to a directory
SEE ALSO
archive_entry3, archive_entry_paths3, archive_entry_stat3, libarchive(3)