(filePath)
| 78 | } |
| 79 | |
| 80 | function GetFileCreationDate(filePath) { |
| 81 | try { |
| 82 | const stats = fs.statSync(filePath); |
| 83 | return stats.birthtime; |
| 84 | } catch (err) { |
| 85 | throw err; |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | function GetFileSize(filePath) { |
| 90 | try { |
nothing calls this directly
no outgoing calls
no test coverage detected