|
| БЕСПЛАТНАЯ ежедневная online лотерея! Выигрывай каждый день БЕСПЛАТНО! |
|
|
SetFileTime
The SetFileTime function sets the date and time that a file was created, last accessed, or last modified.
BOOL SetFileTime(
HANDLE hFile, // identifies the file CONST FILETIME *lpCreationTime, // time the file was created CONST FILETIME *lpLastAccessTime, // time the file was last accessed CONST FILETIME *lpLastWriteTime // time the file was last written );
Parameters
hFile
Identifies the file for which to set the dates and times. The file handle must have been created with GENERIC_WRITE access to the file.
lpCreationTime
Points to a FILETIME structure that contains the date and time the file was created. This parameter can be NULL if the application does not need to set this information.
lpLastAccessTime
Points to a FILETIME structure that contains the date and time the file was last accessed. The last access time includes the last time the file was written to, read from, or (in the case of executable files) run. This parameter can be NULL if the application does not need to set this information.
lpLastWriteTime
Points to a FILETIME structure that contains the date and time the file was last written to. This parameter can be NULL if the application does not want to set this information.
Return Values
If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.
Remarks
The FAT and New Technology file systems support the file creation, last access, and last write time values.
See Also
FILETIME, GetFileSize, GetFileTime, GetFileType
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
SetFileTime
Функция SetFileTime устанавливает дату и время, что файл был создан, последний доступный, или последний модифицированное.
BOOL SetFileTime(
РУЧКА hFile, // идентифицирует файл CONST FILETIME *lpCreationTime, // время файл был создан CONST FILETIME *lpLastAccessTime, // время файл был последний доступный CONST FILETIME *время lpLastWriteTime // файл последний раз был написан );
Параметры
hFile
Идентифицирует файл для которого, чтобы устанавливать даты и время. Файловая ручка по-видимому создана доступом GENERIC_WRITE к файлу.
lpCreationTime
Точки на структуру FILETIME, которые содержат дату и время файл был создан. Этот параметр может быть НЕДЕЙСТВИТЕЛЕН если приложение не нужно устанавливать эту информацию.
lpLastAccessTime
Точки на структуру FILETIME, которые содержат дату и время файл был последним доступным. Последнее время доступа включает в последний раз файл был записан на, был прочитан из, или (в случае выполняемых файлов) работать. Этот параметр может быть НЕДЕЙСТВИТЕЛЕН если приложение не нужно устанавливать эту информацию.
lpLastWriteTime
Точки на структуру FILETIME, которые содержат дату и время файл последний раз был записан, чтобы. Этот параметр может быть НЕДЕЙСТВИТЕЛЕН если приложение не хочется установить эту информацию.
Обратные Величины
Если функция добивается успеха, обратная величина ненулевая. Если функция терпит неудачу, обратная величина нулевая. Для того, чтобы расширять информацию ошибки, назовите GetLastError.
Замечания
ЖИРНЫЕ и файловые системы Новой Технологии поддерживают файловое создание, последний раз имеют доступ к, и последний раз записывают время величины.
Смотри Также
FILETIME, GetFileSize, GetFileTime, GetFileType
|
|
|
|
| |