本地文件时间,文件从别的机器拷贝到本地机,本机对文件时间的影响称为文件时间,
系统时间,是本地机的系统内部时间,精确到毫秒。
此函数获取系统时间
在Window系统中,时间日期本人知道的有以下数种
1.SystemTime:
system time is expressed in Coordinated Universal Time (UTC)
2.LocalTime:
3.FileTime :
文件储存的时间格式前面两种日期的格式都是Type SYSTEMTIME wYear As Integer wMonth As Integer wDayOfWeek As Integer wDay As Integer wHour As Integer wMinute As Integer wSecond As Integer wMilliseconds As IntegerEnd Type这TYPE SYSTEMTIME的格式够清楚了,而FileTime则是Type FileTime dwLowDateTime As Long dwHighDateTime As LongEnd TypeThe FILETIME structure is a 64-bit value representing the number of100-nanosecond intervals since January 1, 1601
这三个时间是可以做转换的,LocalTime对SystemTime最简单SystemTime = LocalTime + 时间差 (以台湾来说 时间差 = -8小时)
如果不想更动日期,相对应的参数传Null进去 。
另可参考读取文件建立时间及存取时间'以下程式在Form,需 textBox * 1 Command Button * 1
第2个参数改Create DateTime'
第3个参数改Last Access DateTime'
第四个参数改Last Modify DateTime