mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 03:33:48 +00:00
* Feature: Augment VFS file information with creation times & update some console functions to use VFS.
This commit is contained in:
parent
277cdf67b0
commit
948bc43d85
7 changed files with 36 additions and 23 deletions
|
|
@ -143,6 +143,10 @@ static void _CopyStatAttributes(const WIN32_FIND_DATAW& info, FileNode::Attribut
|
|||
attr->atime = Win32FileTimeToTime(
|
||||
info.ftLastAccessTime.dwLowDateTime,
|
||||
info.ftLastAccessTime.dwHighDateTime);
|
||||
|
||||
attr->ctime = Win32FileTimeToTime(
|
||||
info.ftCreationTime.dwLowDateTime,
|
||||
info.ftCreationTime.dwHighDateTime);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue