mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 11:43:49 +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
|
|
@ -135,6 +135,7 @@ static void copyStatAttributes(const struct stat& info, FileNode::Attributes* at
|
|||
attr->size = info.st_size;
|
||||
attr->mtime = UnixTimeToTime(info.st_mtime);
|
||||
attr->atime = UnixTimeToTime(info.st_atime);
|
||||
attr->ctime = UnixTimeToTime(info.st_ctime);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue