| 3344 | } |
| 3345 | |
| 3346 | BFP_EXPORT BfpTimeStamp BFP_CALLTYPE BfpFile_GetTime_LastWrite(const char* path) |
| 3347 | { |
| 3348 | UTF16String wPath = UTF8Decode(path); |
| 3349 | |
| 3350 | BfpTimeStamp lastWriteTime = 0; |
| 3351 | GetFileInfo(path, &lastWriteTime, NULL); |
| 3352 | |
| 3353 | return lastWriteTime; |
| 3354 | } |
| 3355 | |
| 3356 | BFP_EXPORT BfpFileAttributes BFP_CALLTYPE BfpFile_GetAttributes(const char* path, BfpFileResult* outResult) |
| 3357 | { |
no test coverage detected