delorie.com/djgpp/doc/libc/libc_699.html | search |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
#include <dos.h> int setftime(int handle, struct ftime *ftimep); |
This function sets the modification time of a file. Note that since writing to a file and closing a file opened for writing also sets the modification time, you should only use this function on files opened for reading.
See section getftime, for the description of struct ftime
.
Zero on success, nonzero on failure.
ANSI/ISO C | No |
POSIX | No |
int q = open("data.txt", O_RDONLY); struct ftime f; f.ft_tsec = f.ft_min = f.ft_hour = f.ft_day = f.ft_month = f.ft_year = 0; setftime(q, &f); close(q); |
webmaster | delorie software privacy |
Copyright © 2004 | Updated Apr 2004 |