|
NAMEelftc_set_timestamps —
set file timestamps
LIBRARYlibrary “libelftc”SYNOPSIS#include <libelftc.h>
int
DESCRIPTIONTheelftc_set_timestamps () function is used to set the
access and modified time stamps on a file based on the contents of a
struct stat descriptor.
Argument filename names an existing file in the file system. Argument sb points to structure of type struct stat populated by a prior call to fstat(2) or stat(2). IMPLEMENTATION NOTESThis function will invoke the high-resolution utimes(2) system call if the underlying operating system supports it. On operating systems lacking support for utimes(2), the function will use lower resolution utime(2) system call.EXAMPLESTo set the access and modified times for a new file to those of an existing file, use:struct stat sb; const char *existing_filename, *new_filename; if (stat(existing_filename, &sb) < 0) err(EXIT_FAILURE, "stat failed"); if (elftc_set_timestamps(new_filename, &sb) < 0) err(EXIT_FAILURE, "timestamps could not be set"); SEE ALSOfstat(2), stat(2), utime(2), utimes(2)
Visit the GSP FreeBSD Man Page Interface. |