(relativePath string, stat os.FileInfo)
| 284 | } |
| 285 | |
| 286 | func createFileInformationFromStat(relativePath string, stat os.FileInfo) *fileInformation { |
| 287 | fileInformation := &fileInformation{ |
| 288 | Name: relativePath, |
| 289 | Size: stat.Size(), |
| 290 | Mtime: stat.ModTime(), |
| 291 | } |
| 292 | |
| 293 | return fileInformation |
| 294 | } |
no test coverage detected