mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-12 07:04:36 +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
|
|
@ -114,6 +114,7 @@ public:
|
|||
String name; ///< File/Directory name
|
||||
Time mtime; ///< Last modified time
|
||||
Time atime; ///< Last access time
|
||||
Time ctime; ///< Creation Time
|
||||
U64 size;
|
||||
};
|
||||
|
||||
|
|
@ -128,6 +129,7 @@ public:
|
|||
|
||||
// Convenience routines - may be overridden for optimal access
|
||||
virtual Time getModifiedTime(); ///< @note This will return Time() on failure
|
||||
virtual Time getCreatedTime(); ///< @note This will return Time() on failure
|
||||
virtual U64 getSize(); ///< @note This will return 0 on failure
|
||||
virtual U32 getChecksum(); ///< @note This will return 0 on failure
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue