1 .\" $NetBSD: utimes.2,v 1.13 1999/03/22 19:45:11 garbled Exp $
3 .\" Copyright (c) 1990, 1993
4 .\" The Regents of the University of California. All rights reserved.
5 .\" Copyright (c) 2012, Jilles Tjoelker
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\" notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\" notice, this list of conditions and the following disclaimer in the
14 .\" documentation and/or other materials provided with the distribution.
15 .\" 3. Neither the name of the University nor the names of its contributors
16 .\" may be used to endorse or promote products derived from this software
17 .\" without specific prior written permission.
19 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 .\" @(#)utimes.2 8.1 (Berkeley) 6/4/93
40 .Nd set file access and modification times
44 .Fn futimens "int fd" "const struct timespec times[2]"
48 .Fa "const char *path"
49 .Fa "const struct timespec times[2]"
53 The access and modification times of the file named by
57 are changed as specified by the argument
59 The inode-change-time of the file is set to the current time.
63 specifies a relative path,
64 it is relative to the current working directory if
68 and otherwise relative to the directory associated with the file descriptor
76 can be set to the special value
78 to set the current time, or to
80 to leave the time unchanged.
89 it is assumed to point to an array of two timespec structures.
90 The access time is set to the value of the first element, and the
91 modification time is set to the value of the second element.
96 this is equivalent to passing
97 a pointer to an array of two timespec structures
107 the timestamps remain unchanged and
108 no permissions are needed for the file itself,
109 although search permissions may be required for the path prefix.
110 The call may or may not succeed if the named file does not exist.
116 the caller must be the owner of the file, have permission to
117 write the file, or be the super-user.
119 For all other values of the timestamps,
120 the caller must be the owner of the file or be the super-user.
127 are constructed by a bitwise-inclusive OR of flags from the following list,
130 .Bl -tag -width indent
131 .It Dv AT_SYMLINK_NOFOLLOW
134 names a symbolic link, the symbolic link's times are changed.
137 changes the times of the file referenced by the symbolic link.
142 These system calls will fail if:
153 and the effective user ID of the process does not
154 match the owner of the file, and is not the super-user, and write
159 component of at least one of the values specified by the
161 argument has a value less than 0 or greater than 999999999 and is not equal to
166 An I/O error occurred while reading or writing the affected inode.
180 and the calling process's effective user ID
181 does not match the owner of the file and is not the super-user.
183 The named file has its immutable or append-only flag set, see the
185 manual page for more information.
187 The file system containing the file is mounted read-only.
199 does not refer to a valid descriptor.
208 Search permission is denied for a component of the path prefix.
212 argument does not specify an absolute path and the
216 nor a valid file descriptor.
221 points outside the process's allocated address space.
223 Too many symbolic links were encountered in translating the pathname.
224 .It Bq Er ENAMETOOLONG
225 A component of a pathname exceeded
227 characters, or an entire path name exceeded
231 The named file does not exist.
233 A component of the path prefix is not a directory.
237 argument is not an absolute path and
241 nor a file descriptor associated with a directory.
255 system calls are expected to conform to