123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- /*++
- Copyright (c) 2013 Minoca Corp.
- This file is licensed under the terms of the GNU General Public License
- version 3. Alternative licensing terms are available. Contact
- info@minocacorp.com for details. See the LICENSE file at the root of this
- project for complete licensing information.
- Module Name:
- utime.h
- Abstract:
- This header contains definitions for modifying file modification and
- access times.
- Author:
- Evan Green 3-Jul-2013
- --*/
- #ifndef _UTIME_H
- #define _UTIME_H
- //
- // ------------------------------------------------------------------- Includes
- //
- #include <sys/types.h>
- //
- // ---------------------------------------------------------------- Definitions
- //
- #ifdef __cplusplus
- extern "C" {
- #endif
- //
- // ------------------------------------------------------ Data Type Definitions
- //
- /*++
- Structure Description:
- This structure defines the times buffer used to pass a file modification and
- access time around together.
- Members:
- actime - Stores the file access time.
- modtime - Stores the file modification time.
- --*/
- struct utimbuf {
- time_t actime;
- time_t modtime;
- };
- //
- // -------------------------------------------------------------------- Globals
- //
- //
- // -------------------------------------------------------- Function Prototypes
- //
- LIBC_API
- int
- utime (
- const char *Path,
- const struct utimbuf *Times
- );
- /*++
- Routine Description:
- This routine sets the access and modification times of the given file. The
- effective user ID of the process must match the owner of the file, or the
- process must have appropriate privileges.
- Arguments:
- Path - Supplies a pointer to the path of the file to change times for.
- Times - Supplies an optional pointer to a time buffer structure containing
- the access and modification times to set. If this parameter is NULL,
- the current time will be used.
- Return Value:
- 0 on success.
- -1 on failure, and errno will be set to contain more information.
- --*/
- #ifdef __cplusplus
- }
- #endif
- #endif
|