|
File Times
A file time represents the specific date and time at which a given file was created, last
accessed, or last written to. Windows records file times whenever applications
create, access, and write to files. Windows records the times using a 64-bit
value specifying the number of 100-nanosecond intervals that have elapsed since
12:00 A.M. January 1, 1601 (UTC). Writing to a file changes the last write time; writing
to or reading from the file (including running an executable file) changes the
last access time.
Note Not all file systems can record creation and last access time. In
particular, the file allocation table (FAT) file system records only last-write times.
You can retrieve the file times for a given file by using the GetFileTime function. GetFileTime copies the creation, last access, and last write times to individual FILETIME structures. Each structure consists of two 32-bit values that combine to form
the single 64-bit value. You can also retrieve the file times by using the FindFirstFile and FindNextFile functions. These functions copy the times to FILETIME structures in a WIN32_FIND_DATA structure.
You can set the file times for a file by using the SetFileTime function. This function lets you modify creation, last access, and last write
times without changing the content of the file. You can compare the times of
different files by using the CompareFileTime function. The function compares two file times and returns a value indicating
which time is greater or returns zero if the times are equal.
To make a file time more meaningful to a user, you can extract the month, day,
year, and time of day from a file time by using the FileTimeToSystemTime function. FileTimeToSystemTime converts the file time and copies the individual values for date and time of
day to a SYSTEMTIME structure.
Windows records all file times in UTC-based times, but you can convert a file
time to the local time for your time zone by using the FileTimeToLocalFileTime function. Before displaying a file time to a user, applications typically
convert the file time to local time, then extract the month, day, year and time of
day using FileTimeToSystemTime.
If you plan to modify file times for given files, you can convert a date and
time of day to a file time by using the SystemTimeToFileTime function. You can also obtain the system time FILETIME structure by calling the GetSystemTimeAsFileTime function.
If the original date and time of day are given in the local time for your time
zone, you can convert the resulting file time to UTC by using the LocalFileTimeToFileTime function. Always make sure the file times you set using SetFileTime are valid UTC-based times.
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|