| 596 | |
| 597 | |
| 598 | void File::GetOpenFileTime(RarTime *ft) |
| 599 | { |
| 600 | #ifdef _WIN_ALL |
| 601 | FILETIME FileTime; |
| 602 | GetFileTime(hFile,NULL,NULL,&FileTime); |
| 603 | *ft=FileTime; |
| 604 | #endif |
| 605 | #if defined(_UNIX) || defined(_EMX) |
| 606 | struct stat st; |
| 607 | fstat(fileno(hFile),&st); |
| 608 | *ft=st.st_mtime; |
| 609 | #endif |
| 610 | } |
| 611 | |
| 612 | |
| 613 | int64 File::FileLength() |
nothing calls this directly
no outgoing calls
no test coverage detected