(relativePath string, stat os.FileInfo)
| 393 | } |
| 394 | |
| 395 | func createFileInformationFromStat(relativePath string, stat os.FileInfo) *FileInformation { |
| 396 | return &FileInformation{ |
| 397 | Name: relativePath, |
| 398 | Size: stat.Size(), |
| 399 | Mtime: stat.ModTime().Unix(), |
| 400 | MtimeNano: stat.ModTime().UnixNano(), |
| 401 | Mode: stat.Mode(), |
| 402 | IsDirectory: stat.IsDir(), |
| 403 | } |
| 404 | } |
no test coverage detected