utime.h(3HEAD) Headers utime.h(3HEAD)NAME
utime.h, utime - access and modification times structure
SYNOPSIS
#include <utime.h>
DESCRIPTION
The <utime.h> header declares the structure utimbuf, which includes the following members:
time_t actime /* access time */
time_t modtime /* modification time */
The times are measured in seconds since the Epoch.
The type time_t is defined as described in <sys/types.h>.
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|Interface Stability |Standard |
+-----------------------------+-----------------------------+
SEE ALSO utime(2), types.h(3HEAD), attributes(5), standards(5)SunOS 5.10 10 Sep 2004 utime.h(3HEAD)
Check Out this Related Man Page
UTIME(2) Linux Programmer's Manual UTIME(2)NAME
utime, utimes - change access and/or modification times of an inode
SYNOPSIS
#include <sys/types.h>
#include <utime.h>
int utime(const char *filename, struct utimbuf *buf);
#include <sys/time.h>
int utimes(char *filename, struct timeval *tvp);
DESCRIPTION
utime changes the access and modification times of the inode specified by filename to the actime and modtime fields of buf respectively.
If buf is NULL, then the access and modification times of the file are set to the current time. The utimbuf structure is:
struct utimbuf {
time_t actime; /* access time */
time_t modtime; /* modification time */
};
In the Linux DLL 4.4.1 libraries, utimes is just a wrapper for utime: tvp[0].tv_sec is actime, and tvp[1].tv_sec is modtime. The timeval
structure is:
struct timeval {
long tv_sec; /* seconds */
long tv_usec; /* microseconds */
};
RETURN VALUE
On success, zero is returned. On error, -1 is returned, and errno is set appropriately.
ERRORS
Other errors may occur.
EACCES Permission to write the file is denied.
ENOENT filename does not exist.
CONFORMING TO
utime: SVr4, SVID, POSIX. SVr4 documents additional error conditions EFAULT, EINTR, ELOOP, EMULTIHOP, ENAMETOOLONG, ENOLINK, ENOTDIR, ENO-
LINK, ENOTDIR, EPERM, EROFS.
utimes: BSD 4.3
SEE ALSO stat(2)Linux 1995-06-10 UTIME(2)
hi,
I am building a script to identify those files created/modified today and with file size 0. I am able to find the files with 0 file size and created/modified in last 24 hrs as shown below but not today (current date), I tried using (touch -t time filenm) but in my version of unix at work it... (7 Replies)
Hello, I am trying to install BBFTP software on my Mac (OS X), and am running into some compilation errors. Here is the code, the specific errors are listed after:
#include <dirent.h>
#include <errno.h>
#include <fnmatch.h>
#include <netinet/in.h>
#include <syslog.h>
#include <sys/stat.h>... (1 Reply)
Someone, please help on this issue:-
Note : for security reason i didn't mention hostnames and ips.
==============================================================================
# ntpstat
unsynchronised
polling server every 1024 s
Ntpstat showing unsynchronised.
... (29 Replies)