| 131 | } |
| 132 | |
| 133 | S32 Platform::compareModifiedTimes( const char *firstPath, const char *secondPath ) |
| 134 | { |
| 135 | FileTime firstModTime; |
| 136 | if ( !getFileTimes( firstPath, NULL, &firstModTime ) ) { |
| 137 | //The reason we failed to get file times could be cause it is in a zip. Lets check. |
| 138 | return Torque::FS::CompareModifiedTimes(firstPath, secondPath); |
| 139 | } |
| 140 | |
| 141 | FileTime secondModTime; |
| 142 | if ( !getFileTimes( secondPath, NULL, &secondModTime ) ) |
| 143 | return -1; |
| 144 | |
| 145 | return compareFileTimes( firstModTime, secondModTime ); |
| 146 | } |
| 147 | |
| 148 | bool Platform::getWebDeployment() |
| 149 | { |
nothing calls this directly
no test coverage detected